OK .. before I start beating my head against a wall I need some ideas on a strange Apache issue.
I installed Apache, PHP and MySQL using the tutorial from this site, and packages from LinuxPackages.net.
Apache works just fine on it's own, but when I add this line in the httpd.conf and restart Apache, it starts but stops immediately.
Code:
Include /etc/apache2/mod_php.conf
This is what my /etc/apache2/mod_php.conf looks like:
Code:
#
# mod_php - PHP Hypertext Preprocessor module
#
LoadModule php5_module lib/apache2/libphp5.so
# Tell Apache to feed all *.php files through the PHP module
AddType application/x-httpd-php .php .phtml
# This will display PHP files in colored syntax form. Use with caution.
#AddType application/x-httpd-php-source .phps
My /var/log/apache2/error_log does not show any errors at all.
Any ideas anyone?