html login box with .htaccess password file?
Posted: Mon Jul 03, 2006 8:16 pm
I currently have an .htaccess password protected directory with an external .pwd file
I need to make a generic login/password box on an html page for the login instead of the default brower login popup.
Is this even possible? It needs to be secure as well.
Any written tutorials on this?
I checked this, but this seems too complex for what im trying to do.
viewtopic.php?t=38810
and found this but its not complete.
viewtopic.php?t=46159&highlight=htaccess+login
this is my current htaccess
Thank you!
-rami
I need to make a generic login/password box on an html page for the login instead of the default brower login popup.
Is this even possible? It needs to be secure as well.
Any written tutorials on this?
I checked this, but this seems too complex for what im trying to do.
viewtopic.php?t=38810
and found this but its not complete.
viewtopic.php?t=46159&highlight=htaccess+login
this is my current htaccess
Code: Select all
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
require valid-user
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthType Basic
AuthName name
AuthUserFile /path/filename.pwd
AuthGroupFile /path/filename.grp-rami