You just need to check with your host if .htaccess is allowed. Ask them and they will tell you. If it is allowed then it's simple to set up, it can all be done manually.
You just need to create a file called .htaccess in the directory you want to protect. And also create a .htpasswd file which contains the login information. you can place the .htpasswd file in the same directory if you wish.
The .htaccess file will look something like::
AuthUserFile home/root/directory/protected/.htpasswd
AuthGroupFile /dev/null
AuthName "Protected Directory"
AuthType Basic
<Limit GET POST>
require valid-user
</Limit>
your .htpasswd file will look something like::
username:smskKoVAZCVbY
You will need to customise these and also create an encrypted password. I have a wizard which can do all of this for you, then you can manually create the files with the information the wizard produces.
ALTERNATIVELY
go to
and download DirectoryPass,
install this CGI file and it will do everything for you! In theory! (It wouldn't work for me)
This help??
If you want to access the wizard mail me (thro. my site below)
Also, check what kind of server you are on, the wizard may not work depending on what kind of server you use.
É
::
::