David Scott wrote:
The following patch makes life a lot easier:
in B::TerseSize:
631c631
< my $script = $q->script_name;
---
> my $script = ( defined $q && $q ) ? $q->script_name : $r->uri;
The problem is, the Apache 2 API doesn't use CGI query objects at all so
you can't use the scr
The following patch makes life a lot easier:
in B::TerseSize:
631c631
< my $script = $q->script_name;
---
> my $script = ( defined $q && $q ) ? $q->script_name : $r->uri;
The problem is, the Apache 2 API doesn't use CGI query objects at all so
you can't use the script name.
d
Jonath
On Nov 30, 2006, at 5:58 PM, David Scott wrote:
This is not a good Apache day. I already sent out a message
regarding an Apache::Scoreboard problem, and now Apache2::Status
doesn't work either.
it's a bug, but i think its platform specific/ odd
i ran into the same thing a while back
che