I was running htpasswd on the command line, with -b and -c, passing the username and password. Looks like the pw file is created correctly, and my .htaccess file looks fine, but it doesn't like any passwords. Any idea?
htaccess file below:
AuthName "restricted stuff"
AuthType Basic
AuthUserFile ../.htpasswd
<Limit GET POST>
require valid-user
</Limit>
.htpasswd is the file i'm calling to create the users in (which i've verified).
htaccess file below:
AuthName "restricted stuff"
AuthType Basic
AuthUserFile ../.htpasswd
<Limit GET POST>
require valid-user
</Limit>
.htpasswd is the file i'm calling to create the users in (which i've verified).