Hi,
After installing PHP4.0 Apache doesn't seem to link the .php extension with the php.exe file. I installed php in c:\php\
My PHP httpd.conf lines:
ScriptAlias /php/ "c:/php/"
AddType application/x-httpd-php3 .php3
AddType application/x-httpd-php .php
Action application/x-httpd-php "/php/php.exe"
Action application/x-httpd-php3 "/php/php.exe"
I always get the same error:
<filename> is not executable; ensure interpreted scripts have "#!" first line.
So do I need to type #!<phplocation> in front of my scripts? (I didn't thought so)
I hope somebody can help me out.