Hi,
I have a directory under htdocs called stat that I try to protect. In this dir I put 2 files.
The first us .htaccess:
AuthName "stat"
AuthType Basic
AuthGroupFile /dev/null
AuthUserFile /usr/local/httpd/htdocs/tony/stat/.htpasswd
<Limit GET POST>
require valid-user
</Limit>
The second is .htpasswd that contain the users and password.
But it dosent work. Why?
Assaf