Recently I upgraded PHP to 5.4, but it seems to be failing on me because APC isn't working with it, however this gave me no choice but to downgrade to 5.3, how can I do this?
I executed apt-get remove php5
and apt-get purge php5
then I removed the 5.4 repo from apt-get then executed apt-get install php5
, it says it was installing 5.3, and I restarted php-fastcgi
and php5-fpm
but when I run php -v
it says 5.4.
How can I downgrade from 5.4 to 5.3?
My server is running Ubuntu 11.04.
Downgrading PHP 5.4 to 5.3
In Ubuntu downgrading process is a really mess. Here is the script which you could find it useful (it removes PHP 5.4 and install PHP 5.3):
Where the available versions you can check by command:
apt-cache showpkg php5
After the installation, verify it by command:
php --version
Please be careful and don't install any other packages without package version specified (like php5-xcache), otherwise apt-get will replace your PHP instance with 5.4 again!
To prevent this happening, you can hold these packages.
Holding packages using dpkg
To hold packages by dpkg, you can execute the following command:
To hold all PHP packages, run the following command:
The following command will show you holding status of your php packages:
Holding packages using aptitude
You can also hold packages using aptitude e.g.:
Unhold:
First execute
apt-cache showpkg php5
. There you will see version and other information about the package php5.To install a specific version run
apt-get install <package name>=<version>
In my Ubuntu 11.10 it would be
apt-get install php5=5.3.6-13ubuntu3.6
Maybe this guide will help you: How to downgrade a package in Ubuntu
So to download and install any package of any available version you have to do this:
I had a similar problem.
I removed the repositories.
You have to remember that
php -v
runs the executable in thephp-cli
package so you have to remove that too.So I did the following to get back to 5.3.10:
Now this should show the desired version:
from the steps you described, you forgot to apt-get update after purging php5.4 and removing the php5.4 repo.
assuming you don't have the repo anymore in apt sources, if you run:
you should be back on 5.3