I can password protect any sub dir in public_html, but not cgi-bin.
I guess there is some setting in apache which is preventing password protection in that directory?
Cheers.
littleman
7:45 pm on Oct 21, 2002 (gmt 0)
Open up your httpd.conf file and something that looks like this: <Directory "/path/to/cgi-bin"> AllowOverride None other stuff here </Directory>
Then modify it to something like this: <Directory "/path/to/cgi-bin"> AllowOverride AuthConfig Limit other stuff here </Directory> Then restart apache and it should work.