i'm trying to install php in cgi mode with apache in linux. Apache 2.0.39 is running just fine, showing the .html pages. Whenever I try to access a .php page i get a 404 object not found error. i did the following to configure php:
./configure --enable-force-cgi-redirect --enable-discard-path
i then added this to my httpd.conf:
AddType application/x-httpd-php .php
Action application/x-httpd-php /usr/local/bin/php
does anyone know what else i should try?!