Re: .htaccess file

2002-10-21 Thread Hiten Desai
> > [root@local host]# htpasswd -c /etc/httpd/users client > > and the user file is there > > I go to my html dir > > cd /var/www/html > > and create a .htaccess file with the following > > AuthName "restricted stuff" > AuthType Basic >

.htaccess file

2002-10-20 Thread Blair MacDonald
Greetings Earthlings :)   I have redhat 8.0 and apache 2.0 (du I think). I have created a password file with the following command   [root@local host]# htpasswd -c /etc/httpd/users client   and the user file is there   I go to my html dir   cd /var/www/html   and create a .htaccess file

Re: .htaccess file

2002-10-20 Thread Schelstraete Bart
and create a .htaccess file with the following AuthName "restricted stuff" AuthType Basic AuthUserFile etc/httpd/users AuthUserFile /etc/httpd/users You forgot a trailing '/'. I suppose this was just a typo? require valid-user *)Check the permissions of

Re: .htaccess file

2002-10-20 Thread Frank Bax
At 02:53 AM 10/20/02, Schelstraete Bart wrote: and create a .htaccess file with the following AuthName "restricted stuff" AuthType Basic AuthUserFile etc/httpd/users AuthUserFile /etc/httpd/users You forgot a trailing '/'. I suppose this was just a typo? As for

Re: htaccess file

2000-01-23 Thread ware
hConfig" line in access.conf. I've created the .htaccess > file in the directory I want to protect with the following: > > AuthName "restricted stuff" > AuthType Basic > AuthUserFile /usr/local/etc/httpd/users > > require valid-user > > > After doi

htaccess file

2000-01-23 Thread ware
issions. I've added the "AllowOveride AuthConfig" line in access.conf. I've created the .htaccess file in the directory I want to protect with the following: AuthName "restricted stuff" AuthType Basic AuthUserFile /usr/local/etc/httpd/users require valid-user A