going nuts index.php not executing

redeye

Verified User
Joined
May 11, 2004
Messages
145
I have a default httpd.conf, fresh install. When I call a directory http://www.bla.com/forum, it does not execute the index.php in it, but wants to save it. When I call that file directly using http://www.bla.com/forum/index.php then it works.

Strange enough, the root directory works fine :confused:

I think it has something to do with this, but I just can't figure it out, who has the sollution?

<Directory /home/*>
AllowOverride All
Options MultiViews -Indexes FollowSymlinks IncludesNoExec +Includes
<Limit GET POST OPTIONS PROPFIND>
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST OPTIONS PROPFIND>
Order deny,allow
Deny from all
</LimitExcept>
</Directory>

<IfModule mod_dir.c>
DirectoryIndex index.php index.html index.htm index.shtml index.php4 index.php3 index.phtml index.cgi
</IfModule>
 
That looks right to me. Does the same thing happen if you use a different default page, such as index.html?
 
solved

It's solved, but don't ask how, i realy donot know. In my opinion i did't change anything on that front. Thx anyway.
 
Back
Top