It appears that Lucid Lynx comes with PHP 5.3. Is there a convenient way to downgrade to the latest 5.2x release?

link|improve this question
feedback

3 Answers

up vote 3 down vote accepted

Yes. Debian's (and Ubuntu's) apt package management is very powerful. All you need to do is add the sources for the previous releases packages, but tell ubuntu only to use them for PHP (and related dependencies) using a technique called "apt pinning". Instructions are here:

http://ohioloco.ubuntuforums.org/showpost.php?p=9080474&postcount=7

link|improve this answer
feedback

Another option is to install Zend Server Community Edition, which is a free PHP stack, obviously from Zend, that provides PHP 5.2 or 5.3 (choose at installation).

It comes with some nice extra's, such as Optimizer+ (a byte-code cache, similar to APC, that seriously speeds up script execution), Debugger and Profiler (must-haves), a Data Cache API (similar to memcached) and a nice GUI to manage the php.ini file and extensions.

All-in-all a nice package which I use on several servers.

link|improve this answer
Agreed - though I do turn off the optimiser, debugger & cache in preference to use APC, Xdebug and Memcached – Alister Bulman May 11 '10 at 21:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.