Does anyone know why this is?
I have read various things about changing the httpd.conf file but
- the information varies and is conflicting
- what is said to be in the file is not in the same format and there are two versions of what is meant to be there i.e.
<Directory /> </Directory>
and<Directory something else> </Directory>
The original PHP 5.4.3/Apache 2.4.2 is working fine but I can't see enough similar points of reference to be able to copy the httpd.conf settings over into the file for Apache 2.2.2 (which I am using with PHP 5.3.1.
Lines 160-166:
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Satisfy all
</Directory>
Lines 305-310:
<Directory "cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
Or is it something completely different?