我正在使用CentOS 6.4(centos-release-6-4.el6.centos.10.x86_64)。我正在尝试升级php版本 5.3.3 至 5.4.4 通过使用:
yum upgrade php-mysql php-devel php-gd php-pecl-memcache php-pspell php-snmp php-xmlrpc php-xml
和
yum upgrade php
...但这是我得到的唯一信息:
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: centos.netnitco.net
* extras: mirror.wiredtree.com
* updates: mirror.thelinuxfix.com
Setting up Update Process
No Packages marked for Update
我已经跑了:
yum update
一切都井然有序。我还检查了排除 php-*
在 /etc/yum.conf
但没有找到任何东西。有任何想法吗?谢谢!
更新:解决方案
谢谢 @mirkobrankovic 我结束了这样做(在64位操作系统上):
wget http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
rpm -ivh epel-release-6-8.noarch.rpm
wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
rpm -Uvh remi-release-6*.rpm
yum --enablerepo=remi upgrade php-mysql php-devel php-gd php-pecl-memcache php-pspell php-snmp php-xmlrpc php-xml
此问题作为偏离主题关闭,因为它被交叉发布到服务器故障: serverfault.com/questions/520752/...
—
slhck