Quote:
Originally posted by snakes1100
right now i have this:
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti* */alice* */*.php*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName www.mysite.org
AuthUserFile /home/deuteron/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/deuteron/public_html/_vti_pvt/service.grp
|
Hmm...using both deny from all and allow from all?
That "deny from all" you're using denies everyone. I'm not sure what you're protecting, but I wouldn't recommend using it. Use this instead:
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti* */alice* */*.php*
<Limit GET POST>
order deny,allow
deny from all
allow from localhost
</Limit>
<Limit PUT DELETE>
order deny,allow
allow from localhost
</Limit>
AuthName
www.mysite.org
AuthUserFile /home/deuteron/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/deuteron/public_html/_vti_pvt/service.grp
If that doesn't work, replace localhost with your server ip.