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

[cobalt-users] Password-protected dir's



Hello all,

I'm trying to setup a password-protected directory on a RaQ3. I created an
.htaccess and .htpasswd file, doing everything correctly (I've included
all
the steps I took below). When I try to access this directory from the web,
I
am prompted for a user/pass, but none of the users/passes I've created
work.
The RaQ is running the ChiliSoft Interpreter, I thought that might have
something to do with the problem. Has anyone else encountered this before?

STEPS TAKEN:

1) Created directory "employees"
2) Created .htaccess file in "employees" with this text:

AuthUserFile /home/sites/www.domainname.com/web/employees/.htpasswd
AuthGroupFile /dev/null
AuthName EmployeesOnly
AuthType Basic

<Limit GET>
require user daren
require user daren2
</Limit>

3) Created .htpasswd file by first using the command:

/usr/sbin/htpasswd -c
/home/sites/www.domainname.com/web/employees/.htpasswd daren

Then,

/usr/sbin/htpasswd /home/sites/www.domain.com/web/employees/.htpasswd
daren2

Entering "test" as the password for both users. When I connect to the site
(http://www.domain.com/employees/index.html) I am prompted for a
user/pass,
but neither of the users/passwords I've created work.