Is there an easy way to run multiple versions of PHP on Ubuntu 10.04 (desktop), and switching between them?

I am spoiled with the very easy installation and switching of PHP in WAMP for Windows. This would be for a development environment.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

The idea would be to manually compile several versions of PHP (./configure, ./make but not ./make install), and have the PHP extension you request loaded within your VirtualHost configuration.

That way, you can postpone loading the PHP library until you need it, and you can choose a different PHP library for each VirtualHost.

link|improve this answer
feedback

To avoid to install and configure two or more web server (listeing on two or more ports), try to read these:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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