Apache Password authentication issues

Apache Password authentication issues

am 27.03.2008 20:52:53 von Sailesh Krishnamurthy

------=_Part_26815_8714427.1206647573281
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

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
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


..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

------=_Part_26815_8714427.1206647573281
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

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


------=_Part_26815_8714427.1206647573281--

Fwd: Apache Password authentication issues

am 28.03.2008 14:47:53 von Sailesh Krishnamurthy

------=_Part_29897_1242447.1206712073464
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

any luck with this ?

---------- Forwarded message ----------
From: Sailesh Krishnamurthy
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
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


..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

------=_Part_29897_1242447.1206712073464
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

any luck with this  ?

---------- Forwarded message ----------
From: Sailesh Krishnamurthy <>

Date: Thu, Mar 27, 2008 at 3:52 PM
Subject: Apache Password authentication issues
To:


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




------=_Part_29897_1242447.1206712073464--

Re: Apache Password authentication issues

am 28.03.2008 21:23:31 von Eric Covener

On Thu, Mar 27, 2008 at 3:52 PM, Sailesh Krishnamurthy
wrote:
> 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.

Which ones?

From a thread this week:

Perhaps: http://httpd.apache.org/docs/2.2/mod/mod_authz_groupfile.htm l#authzgroupfileauthoritative

--
Eric Covener
covener@gmail.com

------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org

Re: Apache Password authentication issues

am 28.03.2008 22:06:48 von Sailesh Krishnamurthy

------=_Part_32056_21084585.1206738408257
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

actually, I found out what the problem was? now wondering how to rectify
it.

see our apache web server also uses a custom authentication module and the
earlier LoadModule config overrides the AllowOverride ALL directive that is
set in the Directory entry.

Any ideas how to get around this?

On Fri, Mar 28, 2008 at 4:23 PM, Eric Covener wrote:

> On Thu, Mar 27, 2008 at 3:52 PM, Sailesh Krishnamurthy
> wrote:
> > 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.
>
> Which ones?
>
> From a thread this week:
>
> Perhaps:
> http://httpd.apache.org/docs/2.2/mod/mod_authz_groupfile.htm l#authzgroupfileauthoritative
>
> --
> Eric Covener
> covener@gmail.com
>
> ------------------------------------------------------------ ---------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> " from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
>

------=_Part_32056_21084585.1206738408257
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

actually,  I found out what the problem was? now wondering how to rectify it.

see our apache web server also uses a custom authentication module and the earlier LoadModule config overrides the AllowOverride ALL directive that is set  in the Directory entry.


Any ideas how to get around this?

On Fri, Mar 28, 2008 at 4:23 PM, Eric Covener <> wrote:

On Thu, Mar 27, 2008 at 3:52 PM, Sailesh Krishnamurthy

<> wrote:

> 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.



Which ones?



From a thread this week:



Perhaps:




--

Eric Covener





------------------------------------------------------------ ---------

The official User-To-User support forum of the Apache HTTP Server Project.

See <URL:> for more info.

To unsubscribe, e-mail:

  "   from the digest:

For additional commands, e-mail:






------=_Part_32056_21084585.1206738408257--

Fwd: Apache Password authentication issues

am 31.03.2008 17:49:21 von Sailesh Krishnamurthy

------=_Part_3622_13244865.1206978561191
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

any ideas, how to force apache 1.3 to use the .htaccess file and not use the
authentication module?

---------- Forwarded message ----------
From: Sailesh Krishnamurthy
Date: Fri, Mar 28, 2008 at 5:06 PM
Subject: Re: [users@httpd] Apache Password authentication issues
To: users@httpd.apache.org


actually, I found out what the problem was? now wondering how to rectify
it.

see our apache web server also uses a custom authentication module and the
earlier LoadModule config overrides the AllowOverride ALL directive that is
set in the Directory entry.

Any ideas how to get around this?


On Fri, Mar 28, 2008 at 4:23 PM, Eric Covener wrote:

> On Thu, Mar 27, 2008 at 3:52 PM, Sailesh Krishnamurthy
> wrote:
> > 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.
>
> Which ones?
>
> From a thread this week:
>
> Perhaps:
> http://httpd.apache.org/docs/2.2/mod/mod_authz_groupfile.htm l#authzgroupfileauthoritative
>
> --
> Eric Covener
> covener@gmail.com
>
> ------------------------------------------------------------ ---------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> " from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
>

------=_Part_3622_13244865.1206978561191
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

any ideas, how to force apache 1.3 to use the .htaccess file and not use the authentication module?

---------- Forwarded message ----------
From: Sailesh Krishnamurthy <>

Date: Fri, Mar 28, 2008 at 5:06 PM
Subject: Re: [users@httpd] Apache Password authentication issues
To:


actually,  I found out what the problem was? now wondering how to rectify it.


see our apache web server also uses a custom authentication module and the earlier LoadModule config overrides the AllowOverride ALL directive that is set  in the Directory entry.


Any ideas how to get around this?


On Fri, Mar 28, 2008 at 4:23 PM, Eric Covener <> wrote:


On Thu, Mar 27, 2008 at 3:52 PM, Sailesh Krishnamurthy

<> wrote:

> 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.



Which ones?



From a thread this week:



Perhaps:





--

Eric Covener





------------------------------------------------------------ ---------

The official User-To-User support forum of the Apache HTTP Server Project.

See <URL:> for more info.

To unsubscribe, e-mail:

  "   from the digest:

For additional commands, e-mail:








------=_Part_3622_13244865.1206978561191--