Forum Moderators: phranque
I am trying to password-protect a directory on a client's site. It's not working and my error log says "AuthName takes one argument, The authentication realm (e.g. "Members Only")".
My .htaccess file:
AuthUserFile /full/path/to/directory/.htpasswd
AuthName “Member Forms”
AuthType Basic
require valid-user
My .htpasswd file:
username: password
Any ideas about what's going wrong? Thanks.