Re: Apache2:AuthCookie With httpd 2.4

2020-05-14 Thread Scott Alexander
check that these id and password are correct ? (in other words : where are the user ids and passwords stored ?) And how many different users are you planning to have ? > > > Terveisin/Regards > ** > *Scott Alexander* > > scott.alexan...@humak.fi <mailto:scott.alexan...@humak.fi> &g

Re: Apache2:AuthCookie With httpd 2.4

2020-05-14 Thread tomcat/perl
-- *From:* Edward J. Sabol *Sent:* 12 May 2020 00:58 *To:* Scott Alexander *Cc:* mod_perl list *Subject:* Re: Apache2:AuthCookie With httpd 2.4 On May 11, 2020, at 8:58 AM, Scott Alexander wrote: I've included using https://eur03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fmanpages.deb

Re: Apache2:AuthCookie With httpd 2.4

2020-05-13 Thread Scott Alexander
to protect directories but this project I can not use Shibboleth. Terveisin/Regards Scott Alexander scott.alexan...@humak.fi<mailto:scott.alexan...@humak.fi> From: Edward J. Sabol Sent: 12 May 2020 00:58 To: Scott Alexander Cc: mod_perl list Subject: Re: A

Re: Apache2:AuthCookie With httpd 2.4

2020-05-11 Thread Edward J. Sabol
On May 11, 2020, at 8:58 AM, Scott Alexander wrote: > I've included using > https://manpages.debian.org/unstable/libapache2-authcookie-perl/Apache2_4::AuthCookie.3pm.en.html > as an example > > # In httpd.conf or .htaccess: > PerlModule Sample::Apache2::AuthCookieHandler > PerlSetVar WhatEverP

[Rusonyx #1409052]: Re: Apache2::AuthCookie - semantics of WhatEverPath parameter?

2015-08-11 Thread Rusonyx Support Team
Michael Schout, Вы написали в компанию Русоникс и это письмо является автоматическим подтверждением того, что Ваша заявка поступила в очередь на обработку. Мы ответим на Ваш запрос по возможности максимально быстро. ID Заявки: 1409052 Тема: Re: Apache2::AuthCookie - semantics of

Re: Apache2::AuthCookie - semantics of WhatEverPath parameter?

2015-08-11 Thread Michael Schout
On 7/27/15 12:30 PM, Jim Garrison wrote: > Every example for Apache2::AuthCookie shows > > ... > WhatEverPath / > ... AuthCookie maintainer here. Its the path that will be sent in the HTTP Cookie. As already mentioned by others is the path component of the cookie. If you set a cook

Re: Apache2::AuthCookie - semantics of WhatEverPath parameter?

2015-07-27 Thread Vincent Veyron
On Mon, 27 Jul 2015 10:30:11 -0700 Jim Garrison wrote: > Every example for Apache2::AuthCookie shows > > ... > WhatEverPath / > ... > > but I can find nothing that explains what the value "/" represents. > Is it a URI? Later in the sample configs we see URIs to which > protection a

Re: Apache2::AuthCookie - semantics of WhatEverPath parameter?

2015-07-27 Thread Steve van der Burg
It is the path part of a URL. The HTML Cookie specification defines it, and this is AuthCookie's way of letting you set it. If the request domain + path doesn't match those set in the cookie, then the browser won't send the cookie to the server. When using cookies for non-auth purposes, there

Re: Apache2::AuthCookie - semantics of WhatEverPath parameter?

2015-07-27 Thread Jim Garrison
On 7/27/2015 10:30 AM, Jim Garrison wrote: > Every example for Apache2::AuthCookie shows > > ... > WhatEverPath / > ... > That should of course be PerlSetVar WhatEverPath / -- Jim Garrison (j...@acm.org) PGP Keys at http://www.jhmg.net RSA 0x04B73B7F DH 0x70738D88

Re: Apache2::AuthCookie

2010-05-11 Thread Michael Schout
On 05/10/2010 01:59 PM, André Warnier wrote: > Michael, > I am using that module a lot, and have used it as a base for many > variations of Apache AAA. > It may please you to know that derivates of that module are being used > daily by thousands of people spread all over the world (although they d

Re: Apache2::AuthCookie

2010-05-10 Thread André Warnier
Michael Schout wrote: On 05/10/2010 10:31 AM, Michel Jansen wrote: Is it possible to connect AuthCookie to AuthDBI? I'm the Author of AuthCookie. .. Michael, I am using that module a lot, and have used it as a base for many variations of Apache AAA. It may please you to know that derivates

Re: Apache2::AuthCookie

2010-05-10 Thread Michael Schout
On 05/10/2010 10:31 AM, Michel Jansen wrote: > Is it possible to connect AuthCookie to AuthDBI? I'm the Author of AuthCookie. AuthCookie is a framework for creating authentication modules. You either have to implement your own auth module, using AuthCookie as the base class, or use one of the ma

Re: Apache2::AuthCookie

2010-05-10 Thread Adam Prime
Michel Jansen wrote: Hi, Since i understand that http-authentication is not used much and because it is impossible to logout from an authenticated session without closing the browser i am looking at Apache2::AuthCookie to replace http-authentication. I installed the module but i need some more e

Re: Apache2::AuthCookie, $r->prev not defined in subrequests

2008-01-10 Thread Vegard Vesterheim
On Thu, 10 Jan 2008 13:48:26 +0100 Torsten Foertsch <[EMAIL PROTECTED]> wrote: > On Thu 10 Jan 2008, Vegard Vesterheim wrote: >> The problem I encounter is that the authenticated user is not >> propagated into to the subrequest, so my auth-handler can not do its >> job. The following code is from

Re: Apache2::AuthCookie, $r->prev not defined in subrequests

2008-01-10 Thread Torsten Foertsch
On Thu 10 Jan 2008, Vegard Vesterheim wrote: > The problem I encounter is that the authenticated user is not > propagated into to the subrequest, so my auth-handler can not do its > job. The following code is from Apache2::AuthCookie.pm: > >     unless ($r->is_initial_req) { >         if (defined $

Re: Apache2::AuthCookie

2006-08-06 Thread Jonathan
based on everything that philip mentioned, my guess is that the modules are not being imported correctly personally, i solve lib issues in mod_perl as such: i have a 'use lib' line in startup.pl that calls in my handler lib, and various external libs use lib qw(

Re: Apache2::AuthCookie

2006-08-06 Thread Philip M. Gollucci
Vladimir S. Tikhonjuk wrote: > Hi all > > I get the next error, when I'm trying to use AuthCookie: > > failed to resolve handler Promtelecom::Authentication You're going to have to give more context to that for us to help. > > I put Promtelecom/Authentication.pm into /usr/local/lib/site_perl, w