strange .htaccess phenomenon
Hi all,I encounter a very strange .htaccess phenomenon.
I put a very simple .htaccess to protect a folder. Some users can access without any problem.
But some users report that the pop-up login box refuses to come up and they have a time-out error.
My .htaccess is like this:
AuthName "Members Only!"
AuthType Basic
AuthUserFile /folder/.htpasswd
<limit GET POST PUT DELETE>
require valid-user
</limit>
Is it the problem of my .htaccess or is it related to the Apache version? Any body have similar experiences? Thanks for any suggestions.
Bear