Stormblast
03-15-2007, 03:54 PM
(forgive me if this is the wrong forum)
I've got a website (prefer not to list) that is password protected using htaccess. The problem I am having is that users are keep on having to login multiple times to stay logged in. My thought is that their web browser security settings are preventing my site to store cookies to keep them logged in. How can I adjust my htaccess code so that these users dont have to worry about adjusting anything with their web browser?
This is what's in my htaccess file:
AuthName "members"
AuthType Basic
AuthUserFile "/services/webpages/b/i/mysite.org/public/.htpasswd"
<Limit GET POST PUT>
require valid-user
# Order deny,allow
# Deny from all
# Allow from all
</Limit>
Forgive me if I havent been clear enough or if I even posted the wrong code, I'm dumb when it comes to site security.
Thanks in advanced.
I've got a website (prefer not to list) that is password protected using htaccess. The problem I am having is that users are keep on having to login multiple times to stay logged in. My thought is that their web browser security settings are preventing my site to store cookies to keep them logged in. How can I adjust my htaccess code so that these users dont have to worry about adjusting anything with their web browser?
This is what's in my htaccess file:
AuthName "members"
AuthType Basic
AuthUserFile "/services/webpages/b/i/mysite.org/public/.htpasswd"
<Limit GET POST PUT>
require valid-user
# Order deny,allow
# Deny from all
# Allow from all
</Limit>
Forgive me if I havent been clear enough or if I even posted the wrong code, I'm dumb when it comes to site security.
Thanks in advanced.