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