Robbert Hamburg (HaVa Web- & Procesdesign) wrote:
Hello all, I have made the following: .htaccess AuthType Basic AuthName "Please enter your invitation code" AuthUserFile /home/sites/www.xxxxxx.com/web/dir/.htpasswd AuthPAM_enabled off <limit GET PUT POST> require valid-user </limit> this is placed in the /web/dir as mentioned above. I have made permissions in the GUI to run .cgi I constantly get the following error. The server encountered an internal error or misconfiguration and was unable to complete your request. Your administrator may not have enabled CGI access for this directory. Note that the .htpasswd file is also inplace. Any suggestions ? It is a raq550 Robbert _____________________________________
the default http config does not allow you to override the global options. edit httpd.conf like this to allow certain directory's yo have there own .htaccess options;
<snip from my httpd.conf (raq550)> <Directory /home/.sites/81/site18/web/clanevents> AllowOverride Options FileInfo </Directory> <Directory /home/.sites/81/site18/web/sanneweb> AllowOverride Options FileInfo </Directory> <Directory /home/.sites/81/site18/web/yvonne> AllowOverride All </Directory> <Directory /home/.sites/33/site5/web/gallery> AllowOverride Options FileInfo </Directory> i placed this array of trash at the very bottom of the conf. file Bob.