I'm not sure this is the right place to ask?
I'm setting up a password protection area on my site using .htpasswd (first time I'm trying this).
It seems to work but after getting access the first time it doesn't ask me anymore for a username and password even when I reconnect to the Internet?
As more people are working on the same computer it needs to ask for permission each time somebody connects to the Internet or when somebody tries to access the protected area!
This is the code in .htaccess:
AuthUserFile /home/******/cgi-bin/.htpasswd
AuthGroupFile /dev/null
AuthName "This Area is Restricted to Members Only."
AuthType Basic
<Limit GET>
require valid-user
</Limit>
Anybody knows what to do to achieve what I described above?
+ I would like to use the username data in some cgi scripts, any tips for this?
Thanks, [sig][/sig]
I'm setting up a password protection area on my site using .htpasswd (first time I'm trying this).
It seems to work but after getting access the first time it doesn't ask me anymore for a username and password even when I reconnect to the Internet?
As more people are working on the same computer it needs to ask for permission each time somebody connects to the Internet or when somebody tries to access the protected area!
This is the code in .htaccess:
AuthUserFile /home/******/cgi-bin/.htpasswd
AuthGroupFile /dev/null
AuthName "This Area is Restricted to Members Only."
AuthType Basic
<Limit GET>
require valid-user
</Limit>
Anybody knows what to do to achieve what I described above?
+ I would like to use the username data in some cgi scripts, any tips for this?
Thanks, [sig][/sig]