I have a weird problem using PHP4 + Apache on my Windows 98 System. I am using the latest releases.
Whenever I call a .php4 file, everything works perfectly. But when I call a .php file, the browser tries to download the file.
Why?
Here\'s a snippet of my apache config file (httpd.conf):
ScriptAlias /php/ \"C:/WINDOWS/SYSTEM/php4/\"
AddType application/x-httpd-php .php4
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
Action application/x-httpd-php \"/php/php.exe\"
What am I doing wrong here?