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

Re: [cobalt-users] .htaccess on RAQ4 for all my users



On Wed, 19 Sep 2001, Tech wrote:
> 
>  I need a way to give access to a hidden directory for all my customers
> (with their own loginname/password) without creating/editing an
> extra ".htpasswd" - file.


> I tried the following:
> 
> order allow,deny
> allow from all
> require valid-user 
> Authname "user login"
> AuthPAM_Enabled off
> Authtype Basic
> AuthUserFile /etc/.passwd   
> 
> #or
> 
> AuthUserFile /usr/bin/.htpasswd
> 
> *********************************************
> 
> Do I have to activate PAM or is this allready built in......?????

It's built in, but you turned it off, > AuthPAM_Enabled off
Turn it on ;) and you don't want any reference to AuthUserFile, PAM knows
where the password files are all by itself :)

gsh