
November 28th, 2001, 09:40 AM
|
|
Contributing User
|
|
Join Date: May 2001
Location: Washington DC, USA
Posts: 156
Time spent in forums: 26 m 7 sec
Reputation Power: 8
|
|
|
enabling CGI in /home, changes to httpd.conf having no effect
Any idea why I still get an error 403 when trying to run CGI scripts? I made the following addition to my httpd.conf file and it didn't seem to make much of a difference (although other things, such as turning Indexes off and on, do make the desired effect). I also have the necessary add handler code.
Any idea what's wrong?
Code:
# Enabling CGI for the /home directory (meyers, 28 Nov 2001)
<Directory "/home/httpd">
Options FollowSymLinks MultiViews ExecCGI
AllowOverride FileInfo AuthConfig
Order allow,deny
Allow from all
</Directory>
and also
Code:
AddHandler cgi-script .cgi
|