On this configuration I'm able to run php as a CGI but i can't run it as a module.
In httpd.conf
LoadModule php4_module c:/php4/sapi/php4apache.dll
AddType application/x-httpd-php .php .phtml .php3 .php4
And when i run Apache.exe it says :
syntax error on line 173 of httpd.conf : cannot load c:/php4/sapi/php4apache.dll into server : le module specifie est introuvable (in english that means unable to find specified module)
I tried to copy php4apache.dll in modules/ directory and put :
LoadModule php4_module modules/php4apache.dll
in httpd.conf but it didn't work.
I repeat that using php in CGI everything works well.
Someone has an idea ?