在Debian中将PHP 5.4降级到5.3

前端之家收集整理的这篇文章主要介绍了在Debian中将PHP 5.4降级到5.3前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我不得不在我的服务器上进行Debian dist-upgrade …在此过程中,PHP升级到5.4.我们使用的离子立方体只能支持5.3个大气压,而我在找到如何从5.4降级到5.3时遇到了一些麻烦.谁知道怎么样?
上述两种解决方案都不适合我.做了什么工作将必要的包裹固定在旧的马厩上

将以下内容添加到/etc/apt/sources.lst

deb http://ftp.us.debian.org/debian/ squeeze main contrib non-free
deb-src http://ftp.us.debian.org/debian/ squeeze main contrib non-free

创建

/etc/apt/preferences.d/preferences

添加您需要降级的软件包,例如在我的情况下

Package: PHP5*
Pin: release a=oldstable
Pin-Priority: 700

Package: libapache2-mod-PHP5    
Pin: release a=oldstable
Pin-Priority: 700

Package: libapache2-mod-PHP5
Pin: release a=oldstable
Pin-Priority: 700

Package: PHP-pear
Pin: release a=oldstable
Pin-Priority: 700

Package: *
Pin: release a=stable
Pin-Priority: 600

然后运行命令

aptitude update
aptitude reinstall <necessary packages>
/etc/init.d/apache2 restart

如果您想知道需要升级的软件包,请运行:

dpkg -l|grep PHP|grep 5.4|awk '{print $2}'
原文链接:https://www.f2er.com/php/139393.html

猜你在找的PHP相关文章