Apache2::AuthCookie

2010-05-10 Thread Michel Jansen
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 examples to get things

Apache2::AuthCookie

2006-08-06 Thread Vladimir S. Tikhonjuk
Hi all I get the next error, when I'm trying to use AuthCookie: failed to resolve handler Promtelecom::Authentication I put Promtelecom/Authentication.pm into /usr/local/lib/site_perl, which is in my @INC path list. Here is my httpd.conf: PerlModule Promtelecom::Authentication PerlSetV

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

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

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

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(

problem with Apache2::AuthCookie

2009-07-29 Thread Brian Clarkson
I started having an odd problem with a simple subclass of Apache2::AuthCookie after a mod_perl upgrade. When authorization fails, apache apparently returns a forbidden page to the user (not just a forbidden status to the authentication hook) then fails to redirect the user back to the login

Apache2:AuthCookie With httpd 2.4

2020-05-11 Thread Scott Alexander
HI, Any idea what would cause in error_log failed to resolve handler Sample::Apache2::AuthCookieHandler failed to resolve handler Sample::Apache2::AuthCookieHandler failed to resolve handler Sample::Apache2::AuthCookieHandler failed to resolve handler Sample::Apache2::AuthCookieHandler failed to

Apache2::AuthCookie - semantics of WhatEverPath parameter?

2015-07-27 Thread Jim Garrison
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 applies are defined by or tags, How does the value of this

Re: Apache2:AuthCookie With httpd 2.4

2020-05-11 Thread Edward J. Sabol
errors above. That sample configuration from the POD assumes that you are subclassing Apache2::AuthCookie and that the name of your subclass is Sample::Apache2::AuthCookieHandler. It's meant to be illustrative. I'm guessing you don't actually have such a subclass. Try just removing

Re: Apache2:AuthCookie With httpd 2.4

2020-05-13 Thread Scott Alexander
Hi, Thanks for your answer, but for me this is confusing. I have Apache2_4::AuthCookie is up to date. (3.30) Apache2::AuthCookie is up to date. (3.30) Server version: Apache/2.4.6 (CentOS) Server built: Apr 2 2020 13:13:23 at the end of /etc/httpd/conf.d/ssl.conf there is include /systems

Re: Apache2:AuthCookie With httpd 2.4

2020-05-14 Thread tomcat/perl
Hi. Just some tips, to simplify the issue, below in the text : On 14.05.2020 06:09, Scott Alexander wrote: Hi, Thanks for your answer, but for me this is confusing. I have Apache2_4::AuthCookie is up to date. (3.30) Apache2::AuthCookie is up to date. (3.30) <--- you do not need this w

Re: Apache2:AuthCookie With httpd 2.4

2020-05-14 Thread Scott Alexander
______ From: André Warnier (tomcat/perl) Sent: 14 May 2020 14:40 To: modperl@perl.apache.org Subject: Re: Apache2:AuthCookie With httpd 2.4 Hi. Just some tips, to simplify the issue, below in the text : On 14.05.2020 06:09, Scott Alexander wrote: > Hi, > > Thanks for your answe

ANNOUNCE: Apache::AuthCookie, Apache2::AuthCookie 3.11

2008-02-29 Thread Michael Schout
The uploaded file Apache-AuthCookie-3.11.tar.gz has entered CPAN as file: $CPAN/authors/id/M/MS/MSCHOUT/Apache-AuthCookie-3.11.tar.gz size: 35827 bytes md5: 536ad77c61eaafe1ef152ccdfcdbdbd2 Changes: Version: 3.11 - Fix tiny pod doc error. - Escape CR and LF in 'destination' f

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 - semantics of WhatEverPath parameter?

2015-07-27 Thread Steve van der Burg
Steve van der Burg Information Technology Services London Health Sciences Centre & St. Joseph's Health Care London (519) 685-8500 ext 35559 steve.vanderb...@lhsc.on.ca Jim Garrison wrote: > Every example for Apache2::AuthCookie shows > > ... > WhatEverPath / >

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

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

Information on using Apache2::AuthCookie with httpd 2.4

2014-10-20 Thread Scott Alexander
Hi, I'm moving from Centos 6 to Centos 7, httpd is 2.4.6 Trying to get Apache2::AuthCookie to work with my module for authentication. I've seen one message about useful information in the debian file /usr/share/doc/libapache2-authcookie-perl/README.apache-2.4 Does anyone have

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

2008-01-10 Thread Vegard Vesterheim
I have encountered a problem with Apache2::AuthCookie (version 3.10). I have created a module which inherits from Apache2::AuthCookie, and configured a PerlAuthenHandler and a PerlAuthzHandler for a given Location. File requests works ok, but not directory requests, I suspect this is related to

Re: Information on using Apache2::AuthCookie with httpd 2.4

2014-10-21 Thread Lathan Bidwell
On Tue, Oct 21, 2014 at 2:37 AM, Scott Alexander wrote: > Hi, > > > I'm moving from Centos 6 to Centos 7, httpd is 2.4.6 > > > Trying to get > > Apache2::AuthCookie to work with my module for authentication. > > > Hello Scott, You are not alone. wit

Re: Information on using Apache2::AuthCookie with httpd 2.4

2014-10-24 Thread Scott Alexander
using Apache2::AuthCookie with httpd 2.4 On Tue, Oct 21, 2014 at 2:37 AM, Scott Alexander mailto:scott.alexan...@humak.fi>> wrote: Hi, I'm moving from Centos 6 to Centos 7, httpd is 2.4.6 Trying to get Apache2::AuthCookie to work with my module for authentication. Hello Sc

Re: Information on using Apache2::AuthCookie with httpd 2.4

2014-11-04 Thread Michael Schout
Hi, AuthCookie maintainer here. Basically I wouldn't advise deploying mod_perl against httpd 2.4 at this time. There is still no official mod_perl release that supports apache 2.4. In addition, the authorization API has been completely rewritten in apache 2.4, which means that all of your authc

[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, $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, $r->prev not defined in subrequests

2008-01-10 Thread Vegard Vesterheim
y code to explicitly check for $r->main->user and propagate the username into the running subrequest. My problem is now solved. Thank you. Whether a similar change should be made in modules like Apache2::AuthCookie is still unclear to me. Is this to be considered a bug? I guess the behaviour co

Problem with Apache2::AuthCookie and Apache 2.4: "failed to resolve handler"

2014-06-25 Thread Brian Candler
I have code which works with apache 2.2 but not apache 2.4, and I have boiled this down to a simple reproducing test case. It works with: Ubuntu 12.04 (apache 2.2.22, mod_perl 2.0.5, Apache2::AuthCookie 3.18) It does not work with: Ubuntu 14.04 (apache 2.4.7, mod_perl 2.0.8, Apache2

Re: Problem with Apache2::AuthCookie and Apache 2.4: "failed to resolve handler"

2014-06-25 Thread Brian Candler
On 25/06/2014 13:41, Brian Candler wrote: I notice that there is a newer version of Apache2::AuthCookie (3.22) available, so I installed that from CPAN. But this changes the error to: [Wed Jun 25 13:35:26.054231 2014] [perl:error] [pid 17668] [client 10.0.2.2:50801] Can't locate object m

Re: Problem with Apache2::AuthCookie and Apache 2.4: "failed to resolve handler"

2014-06-25 Thread Brian Candler
OK I have it. The Debian-supplied version of Apache2::AuthCookie *does* have the patches from the httpd24 branch of authcookie, and the documentation for how to use it is in /usr/share/doc/libapache2-authcookie-perl/README.apache-2.4 My testsite can be made to work like this

Re: Problem with Apache2::AuthCookie and Apache 2.4: "failed to resolve handler"

2014-06-25 Thread André Warnier
Brian Candler wrote: OK I have it. The Debian-supplied version of Apache2::AuthCookie *does* have the patches from the httpd24 branch of authcookie, and the documentation for how to use it is in /usr/share/doc/libapache2-authcookie-perl/README.apache-2.4 Very useful information, thanks for