Glen
I have configured php with apache by using "php.exe".But only files with .php4 extensions are working and .php is not working.Please send me the solution for this.
just look in your httpd.conf file for:
AddType application/x-httpd-php .php4
and add line
AddType application/x-httpd-php .php
after that .php scripts shuld work also
cu Igor
try to add configuration in httpd.conf for apache web server with this litle configuration :
ScriptAlias /php4/ "c:/php/" ScriptAlias /php/ "c:/php/" AddType application/x-httpd-php4 .phtml AddType application/x-httpd-php4 .php3 AddType application/x-httpd-php4 .php AddType application/x-httpd-php4-source .phps Action application/x-httpd-php4 /php/php.exe
thank's =trb=
be sure to have this line edited too: DirectoryIndex index.html index.htm index.html.var
this line should now be: DirectoryIndex index.html index.htm index.php index.php4 index.html.var
Igor's solution should work, and you can even put the ".php" extension on the same line as ".php4" - just a space between....
KDK