Centos

在 CentOS 中將 PHP 5.3 更新到 5.4

  • April 14, 2020

我按照教程將 PHP 從 5.3 版本更新到 5.4。我的發行版是 CentOS 5.5。

執行以下命令後:

yum --enablerepo=remi,remi-test install httpd php php-common  

我收到以下錯誤:

   --> Finished Dependency Resolution
php53-common-5.3.3-13.el5_8.i386 from updates has depsolving problems
 --> php53-common conflicts with php-common
Error: php53-common conflicts with php-common
You could try using --skip-broken to work around the problem
You could try running: package-cleanup --problems
                       package-cleanup --dupes
                       rpm -Va --nofiles --nodigest

我該如何解決這個錯誤?

我使用以下程式碼並成功安裝了 PHP 5.4:

yum erase php-common  
yum --enablerepo=remi,remi-test install php

完成 php 5.4 的安裝後,刪除php-zts並重新編譯此擴展或為其重新生成 RPM 包。

yum remove php-zts

引用自:https://unix.stackexchange.com/questions/51977