URL: https://linuxfr.org/forums/linux-debian-ubuntu/posts/apache2-et-php4 Title: Apache2 et PHP4 Authors: bouno Date: 2005年03月22日T17:00:24+01:00 Tags: Score: 0 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" ?> Reponse quand je lance le navigateur [http://monsite.org;(...)](http://monsite.org;) la page index avec le php s'affiche sans clairement LE PROBLEME Quand je lance : [http://monsite.org/article.php3;(...)](http://monsite.org/article.php3;) le navigateur me montre une page vide alors que ce fichier se trouve bien dans le repertoire racine du site. Il en est de même pour tout les fichiers au format .php3 A mon avis je pense que apache2 ne reconnait pas mes fichiers au format .php3. Voila un peu le problème qui me fais couler la sueur depuis quelques; si quelqu'un peut me m'aider à mettre fin à la fatigue .. Merci d'avance à tous ...