[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: [cobalt-users] Members only.
- Subject: RE: [cobalt-users] Members only.
- From: "Dan Kriwitsky" <webhosting@xxxxxxxxx>
- Date: Mon Apr 9 15:36:58 2001
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
n their server? I'm wanting
> to setup an area on my main site accessible to my users only. I guess my
> question would be how to setup the password protection that would
> verify if
> they are a current client and barr access to those that aren't. if anyone
> has done this please contact me off list..
>
Replying on list, as this comes up from time to time and has some unique RaQ
issues.
I set up http://www.cgi-factory.com/password/index.shtml Password Manager in
a client's FrontPage web site with no problems.
In the cfg.pl file I set the path as
$passfile="/home/sites/site#/.htpasswd";
with site# being that site's directory.
The .htaccess file for the directories it creates looks like:
AuthPAM_Enabled off
Options -Indexes
AuthUserFile /home/sites/site#/.htpasswd
AuthGroupFile /dev/null
AuthName "Protected Directory"
AuthType Basic
<Limit GET PUT POST>
require valid-user
</Limit>
Note that AuthPAM_Enabled off which is needed to work.
--
Dan Kriwitsky