Whenever i try to view a php file from my apache 2.0 webserver a dialog comes up asking me where i want to save this file ....I complied PHP 4.0.5 with apxs and mysql support ...i guess it complied and installed ok because i didnt have any errors. ..i am guessing it something to do with my configuration has anybody out there has the same problem
I had the same problem when I installed PHP5 with pre 2.0 apache version. After downgrading PHP5 to PHP4, all worked fine.
Did you configure your httpd.conf file to pass .php files to the php module?
You need to add something like:
LoadModule php4_module "libexec/libphp4.sp" AddModule mod_php4.c AddType application/x-httpd-php .php
in your .conf file.
-Dave