This is a discussion on PHP4 and PHP5 together on 1 LAMP within the alt.comp.lang.php forums, part of the PHP Programming Forums category; Is it possible to run PHP4 and PHP5 simultaneously on 1 webserver (LAMP) ? I guess it is, but how and ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
> Is it possible to run PHP4 and PHP5 simultaneously on 1 webserver
> (LAMP) ? > I guess it is, but how and what are the pros and cons ? > Should one consider this safe for a production environment ? The easiest way to achieve this is to have 1 version installed as a module and the other installed as cgi. Did a quick search on google and it came up with http://www.hurring.com/scott/howto/php4_and_php5/ but there are plenty of other places to find how-tos. |
|
|||
|
On Jul 5, 1:17 am, Pugi! <pugin...@gmail.com> wrote:
> > Is it possible to run PHP4 and PHP5 simultaneously > on 1 webserver (LAMP) ? Yes. GoDaddy does it on its Linux hosting service. Both interpreters are configured as FastCGI executables. Which interpreter processes *.php files is controlled by an AddHandler directive in a .htaccess file, so PHP4 vs. PHP5 choice can be made on a per-directory basis if necessary. The default is set in httpd.conf. > I guess it is, but how and what are the pros and cons ? Pros and cons FOR WHOM? For the server administrator, there are no pros, only cons (each interpreter must be installed and configured; two independent sets of extensions must be maintained; memory requirements are somewhat higher as well). For hosting customers, there are no cons (except slightly higher probability of server overload), only pros (they can use applications that require both PHP4 and PHP5 on the same machine). > Should one consider this safe for a production environment ? If each installation in itself is secure, there is no reason to think running both of them simultaneously would compromise security... Cheers, NC |