[PHP] index.php not autoloading in apache

2008-08-25 Thread Vince Sabio
I am running PHP v5.2.6 on an Apache v2.2 server. For some reason, Apache is not automatically loading index.php files, even when there is no other index.* file in the directory; it will throw a you do not have permission to access [directory] instead. I have the following in my httpd.conf

Re: [PHP] index.php not autoloading in apache

2008-08-25 Thread Richard Heyes
Hi, Simply add Directory index.php to your config. Eg: LoadModule php5_modulelibexec/apache22/libphp5.so php_value session.save_path /tmp/ AddType application/x-httpd-php .php .phtml AddType application/x-httpd-php-source .phps DirectoryIndex index.php That's from meory so it may off, I

Re: [PHP] index.php not autoloading in apache

2008-08-25 Thread Richard Heyes
Simply add Directory index.php to your config. Eg: Oops, that should be: DirectoryIndex index.php -- Richard Heyes http://www.phpguru.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php