Hello Everyone,
I just installed Redhat 7.3 - basically a pretty standard install with the Apache web server.
When I try to make a PHP page to test to see if it is being parsed all I get is a blank window.
In the apache.conf I see this:
<IfDefine HAVE_PHP>
LoadModule php_module modules/mod_php.so
</IfDefine>
<IfDefine HAVE_PHP3>
LoadModule php3_module modules/libphp3.so
</IfDefine>
<IfDefine HAVE_PHP4>
LoadModule php4_module modules/libphp4.so
</IfDefine>
then later in the files is this:
<IfDefine HAVE_PHP>
AddModule mod_php.c
</IfDefine>
<IfDefine HAVE_PHP3>
AddModule mod_php3.c
</IfDefine>
<IfDefine HAVE_PHP4>
AddModule mod_php4.c
</IfDefine>
Those are the only references to the php modules in the conf file. Any idea how I tell apache that yes infact I do have php?
Any help on this would be appreciated!
Thanks,
-Carl