From: alex b. <en...@tu...> - 2001-04-25 06:49:39
|
> Funny ...I am getting the php parsed using the "php4apache.dll" loaded as a > module with the prepends disabled when I browse to the BC /htdocs/hello.php. > I have made a minor adjustment with the httpd.conf you sent me. I disabled > the listen 3000 and am listening on port 80. I don¹t uderstand why when I > run http://mydomain.com/htdocs/index.php my webserver attempts to download > the file to disk ah, that's because you don't have the AddType directives enabled, so apache doesn't know how to treat the php. Make sure you have: AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps in httpd.conf, where you find the other addtype directives. that should solve your latest problem. _a |