Re: phpMyAdmin

Pàgina inicial

Reply to this message
Autor: Olivier Guerrier
Data:  
A: ML Guilde
Assumpte: Re: phpMyAdmin
Heurtaux Vincent wrote:
| http://localhost/phpMyAdmin
| Mozilla (ou apache ?) me répond qu'il ne comprend pas le php "voulez-vous
| l'enregistrer sur DD ou l'ouvrir avec ?"

|
| * Comment puis-je vérifier que Apache a bien été compilé avec les

modules php?

Essaye avec http://localhost/phpMyAdmin/index.php

si ça marche, c'est que php est installé, mais qu'il manque des options
dans le httpd.conf

dans le mien, j'ai ça pour php4:

...
LoadModule php4_module /usr/lib/apache/1.3/libphp4.so
...
DirectoryIndex index.php
...
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
...

Olivier