Re: Apache2::Status "Memory Usage" fails on Debian

2006-12-02 Thread Philip M. Gollucci
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

Re: Apache2::Status "Memory Usage" fails on Debian

2006-12-01 Thread David Scott
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

Re: Apache2::Status "Memory Usage" fails on Debian

2006-11-30 Thread Jonathan
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