I followed a tutorial on installing Apache with MySQL and PHP. Apache works fine, but PHP scripts apparently won't execute. I have the following lines in my httpd.conf:
LoadModule php4_module /modules/libphp4.so
AddType application/x-httpd-php .php .php3 .phtml
AddType application/x-httpd-php-source .phps
AddModule mod_php4.c
<IfModule mod_php4.c>
php_value include_path ".:/usr/local/lib/php"
php_flag safe_mode on
</IfModule>
If I make a .php file and attempt <? phpinfo(); ?> , it just prints the tag rather than executing it.
Any suggestions?