using redhat 9.0, apache 2.0.54, php-4.4.0 -----
I used these installation instructions here
http://codewalkers.com/phpdocs/install.apache2.html
I followed it to a "t" but now when testing simple php page the php script does not run. Simple php script i am using is
<html>
<head>
<title>php test</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
</head>
<body>
<h1> php test </h1>
<?php phpinfo();?>
</body>
</html>
Wondering if it has something to do with the 2 http.conf files and only one has the LoadModule php4_module libexec/libphp4.so and the AddType application/x-httpd-php .php .
I have one httpd.conf in /usr/local/apache2/conf and another one in /etc/httpd/conf .
Any suggestions on what else i could check or what may be the problem? Oh ya and when i load that web page only the html displays---it is saved as a .php file.
My apache modules seem to be here /usr/lib/httpd/modules but my php module is here /usr/local/apahce2/modules, there is only libphp4.so and httpd.exp in that folder.
What do you think my problem could be?