[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [cobalt-users] Members only.



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