Bonjour à tous !
Je viens d'installer un serveur apache2 avec php4...
l'installation et la configuration sans problème
voici un peu comment j'ai activé les modules php4 dans mes fichiers de configuration :
INSTALLATION
* apt-get install apache2 php4 mysql-server
* apt-get install php4-mysql
* apt-get install libapache2-mod-php4
CONFIGURATION
/etc/apache2/apache2.conf
DirectoryIndex index.html index.cgi index.pl index.php index.php3 index.php4 index.xhtml
.
.
AddType application/x-httpd-php .php .php3 .php4 .phtml
AddType application/x-httpd-php-source .phps
AddType application/x-tar .tgz
TEST AVEC PHP
<?php
echo " test"
?>
(…)