john:/.%gu5ku3x
2) You will need to pre-encrypt the password so that it can be correctly decoded by Apache:
[euronet.nl...]
3) Place the .htpasswd file in a non-web-accessible area of your domain if possible.
4) Create a file named .htaccess that includes the following and place it in the folder you wish to protect:
AuthType Basic
AuthName "My Protected Area"
AuthUserFile "/usr/home/myaccount/users/mydomain.com/members/.htpasswd"
require valid-user
5) Change the AuthUserFile entry to correspond to the UNIX path where you placed the .htpasswd file.
6) Try to access that folder and you'll see a pop-up authorization prompt.
7) Search this forum for a cookie driver routine I've already provided to do your cookie stuff. You can get the authorized username from PERL with $ENV{REMOTE_USER}.