Re: Apache::Reload - ModPerl::Util::unload_package under perl 5.10 use base directive malfunction

2009-01-07 Thread Philippe M. Chiasson
On 26/12/08 20:39, David Ihnen wrote: 1. Problem Description: While developing with CGI::Application and utilizing Apache::Reload, we encountered an issue where our modules were not being succesfully reinitialized on reload. It was traced down to @ISA not containing the proper values after a

Re: Apache::Reload/ModPerl::Util/base.pm incompatibility prospective patch

2009-01-07 Thread Philippe M. Chiasson
Have you tried the alternate unload_package implementation, the one in C/XS? You can try it out by doing BEGIN { $ModPerl::Util::DEFAULT_UNLOAD_METHOD = 'unload_package_xs'; } use ModPerl::Util; Somewhere early in your server startup scripts. On 29/12/08 15:08, David Ihnen wrote: Philip M.

Authorization module is not working

2009-01-07 Thread Odysseas Pentakalos, Ph.D.
I am trying to accomplish authorization of users using client certificates for authenticating users and a database of valid DN's for authorization. As a first step the only thing I am trying to do is verify that my authorization module has been correctly installed. So, before I attempt to write th

Re: Acess current request using static method

2009-01-07 Thread Philip M. Gollucci
sub list : method { my $class = shift; my $r = shift; my $req = APR::Request::Apache2->handle($r); OR sub list { my $r = shift; my $req = APR::Request::Apache2->handle($r); -- 1024D/DB9B8C1C B90B FB

Re: Acess current request using static method

2009-01-07 Thread Mark Hedges
On Wed, 7 Jan 2009, Michael Ludwig wrote: > In 2.0, is there a way to access the current request object using one of > the classes in the following fashion? > > my $r = Apache2::RequestRec->current(); # INVALID! > >From `man Apache2::RequestUtil`: # get the global request object (requires Pe

Acess current request using static method

2009-01-07 Thread Michael Ludwig
In 2.0, is there a way to access the current request object using one of the classes in the following fashion? my $r = Apache2::RequestRec->current(); # INVALID! So you could access the request object from a function without passing the request in as a parameter. Background is, I want to acce

unsubscribe

2009-01-07 Thread andrew s
unsubscribe

ThreadsPerChild vs THR in top using Event MPM

2009-01-07 Thread mackenna
This is not a mod_perl problem, but I received no response to it on the httpd-users mailing list. I send it in the hope that there are many smart people subscribed to this list who may be able to answer it. If you know of another forum or person that might answer it, please tell me where.