I have a site that I'm trying to password protect some sites. My main site is a subdomain of another site (i.e. me.notme.com). I keep my passwd file in a folder called /auth. I don't know what's wrong, but here's my htaccess:
[start]
AuthUserFile http://me.notme.com/auth/.htpasswd
AuthGroupFile /dev/null
AuthName Admin
AuthType Basic
require user me
[end]
And I'm pretty sure my .htpasswd file is fine(only has one user). When I try to access the folder, I'm prompted for a user and password, but everytime I enter the information, it fails. I've tried many different encrypted passwords and nothing new happens. I think that my site is hosted on a virtual server, so would that cause problems when trying to access htpasswd? I don't understand what's wrong! I'm entering the correct password! No, the caps isn't on! I've spent like 5 hours working on this and searching google, but nothing helps.