Forum Moderators: phranque
Contents of .htaccess file:
AuthUserFile /home/content/u/s/e/username/html/.htpasswd
AuthGroupFile /dev/null
AuthName "The Pool"
AuthType Basic
<Limit GET POST>
require valid-user
</Limit>
Contents of .htpasswd file:
#*$!:xxxxxxxx
[edited by: jomoweb at 9:41 pm (utc) on Sep. 27, 2004]
These things can be tricky - first off, the password needs to be encrypted (in the .htpasswd file). It should not spell "abcd" but in stead a string of numbers and letters - you should search for a thingy called MD5 on google, that's what you need to make the encrypted password. I do believe that there are web pages that can do the encryption for you if you are on a windows platform.
Also, i think you might have to take the /u/s/e/ from the path literally, ie. not change that part.