I'm experiencing problems password protecting a directory on my web server using .htaccess and .htpasswd. I've been successful in getting my web server to require a login. However, it appears (from the errors in my error log) that my web server is having trouble locating the htpasswd file. As a result, the login, even if it is using the correct password, fails. My .htaccess files says:
AuthName "Password Protected"
AuthType Basic
AuthUserFile /conf/.htpasswd
Require valid-user
My .htpasswd file is located in C:\Program Files\Apache Group\Apache\conf\.htpasswd
My .htpasswd file says:
Jeff:(the encrypted password)
What am I doing wrong?