I am having trouble getting php to run on windows 98, Apache 1.3.2, PHP 4.2.3
I have the following in my http.conf LoadModule php4_module c:/winnt/php4apache.dll
When I run phpinfo.php it returns what is actually in the file it does not parse it.
Hi Wacook,
If this is all you have in yout http.conf (regaring php) then you are missing the line(s) that tells Apache to pass/parse php files through the php program itself. See below:
AddType application/x-httpd-php .php .phtml
More info can be found at:
http://www.php.net/manual/en/install.apache.php
Hope this help, Nick