Running Apache2 With PHP5 And PHP4 At The Same Time
|
Running Apache2 With PHP5 And PHP4 At The Same Time Version 1.0 This tutorial shows how to install and configure Apache2 with PHP5 and PHP4 enabled at the same time. Because it is not possible to run both PHP5 and PHP4 as Apache modules, we must run one of them as CGI, the other one as Apache module. In this document I will use PHP5 as Apache module and PHP4 as CGI, and I will describe the setup for the Linux distributions Debian Sarge (3.1) and Ubuntu 5.10 (Breezy Badger). I want to say first that this is not the only way of setting up such a system. There are many ways of achieving this goal but this is the way I take. I do not issue any guarantee that this will work for you!
1 Setup For Debian Sarge (3.1)First, you must at least have a working basic Debian installation, as described on the first two pages of the "Perfect Setup" tutorial for Debian Sarge here on HowtoForge: http://www.howtoforge.com/perfect_setup_debian_sarge and http://www.howtoforge.com/perfect_setup_debian_sarge_p2 Because PHP5 is not available in the official Debian Sarge repositories, we have to add another repository (packages.dotdeb.org) to /etc/apt/sources.list. Add these two lines:
to /etc/apt/sources.list (mine looks like this then:
) and run apt-get update afterwards. Now we can install Apache2 as well as the Apache2-PHP5 module and the PHP4-CGI: apt-get install apache2 apache2-doc Next, we can install all the PHP5 and PHP4 modules we need on our server, like this: apt-get install php5-curl php5-dev php5-gd php5-gmp php5-imap php5-ldap php5-mcrypt php5-mhash php5-ming php5-mysql php5-mysqli php5-odbc php5-pdo-mysql php5-pdo-sqlite php5-pear php5-pspell php5-snmp php5-sybase php5-tidy php4-curl php4-domxml php4-gd php4-gmp php4-imap php4-ldap php4-mcal php4-mcrypt php4-mhash php4-ming php4-mysql php4-odbc php4-pspell php4-recode php4-snmp php4-xslt php4-xdebug curl libwww-perl imagemagick (1 line!) Edit /etc/apache2/apache2.conf. Change
to
and add these two lines as well (in the section where you can find AddType and AddHandler directives):
This will make sure that PHP files with the extension .php4 are executed as CGI. PHP files with the extension .php will be run by the Apache2-PHP5 module. Next, we have to enable a few Apache modules, like for example the actions module (otherwise we cannot run PHP4 as CGI): a2enmod actions Restart Apache, and you're done! /etc/init.d/apache2 restart Now we can test our installation: Put two files, info.php and info.php4, with the same content:
into /var/www (this is the default document root of Debian's Apache2) and try to access them in a browser (if the server's IP address is 192.168.0.100, for example, you would type http://192.168.0.100/info.php and http://192.168.0.100/info.php4). You should see two different PHP versions, one run as Apache module (PHP5), the other one (PHP4) called as CGI: info.php:
info.php4:
|






print: 
Recent comments
2 hours 7 min ago
7 hours 33 min ago
8 hours 35 min ago
9 hours 22 min ago
11 hours 28 min ago
11 hours 37 min ago
14 hours 8 min ago
14 hours 57 min ago
17 hours 34 min ago
17 hours 59 min ago