You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Sailesh Krishnamurthy <sa...@gmail.com> on 2008/03/28 14:47:53 UTC

[users@httpd] Fwd: Apache Password authentication issues

any luck with this  ?

---------- Forwarded message ----------
From: Sailesh Krishnamurthy <sa...@gmail.com>
Date: Thu, Mar 27, 2008 at 3:52 PM
Subject: Apache Password authentication issues
To: users@httpd.apache.org


Hi,


We tried setting up password authentication on one of the directories in our
apache virtualhost using a .htaccess file . we now notice that
the password authentication is working only for some users and not others.
Has anyone else noticed this. Ami I missing something here.
The directory and .htacess configs are as below:

    47   <Directory /ab/web/virthosts/abportal/prod/abcd>
    48     AllowOverride ALL
    49     Options Indexes FollowSymLinks Includes ExecCGI
    50      Order allow,deny
    51      Allow from all
    52      AddType text/plain .txt
    53      DefaultType text/plain
    54      AddHandler cgi-script .cgi .pl
    55  </Directory>

.htacess:

deny from all
AuthType Basic
AuthName "Password Required"
AuthUserFile /ab/web/virthosts/abortal/prod/abcd/passwd
AuthGroupFile /ab/web/virthosts/bbiportal/prod/abcd/groups
Require group abcd
Require user efgh
satisfy any