PHP4 and PHP5 together on 1 LAMP
PHP4 and PHP5 together on 1 LAMP
am 05.07.2007 10:17:37 von puginews
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 ?
thanx,
JM
Re: PHP4 and PHP5 together on 1 LAMP
am 06.07.2007 09:37:25 von Peter
> 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.
Re: PHP4 and PHP5 together on 1 LAMP
am 06.07.2007 09:37:25 von Peter
> 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.
Re: PHP4 and PHP5 together on 1 LAMP
am 09.07.2007 21:52:55 von nc
On Jul 5, 1:17 am, Pugi! 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
Re: PHP4 and PHP5 together on 1 LAMP
am 09.07.2007 21:52:55 von nc
On Jul 5, 1:17 am, Pugi! 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