Re: Activating/decativating PerlOutputFilterHandler on-the-fly

2005-05-03 Thread Stas Bekman
Jeff Ambrosino wrote: From within an existing Perl handler/filter, you can dynamically insert ('register') a new filter with the add_output_filter method on the request object: $r-add_output_filter(\callback); And, you can remove a downstream filter (from within an upstream filter) with: $next_f =

Activating/decativating PerlOutputFilterHandler on-the-fly

2005-05-02 Thread Srebrenko Sehic
Hi ppl, I have a couple of PerlOutputFilterHandler directives registered in my httpd.conf VirtualHost conigurations. Is there any way to activate/deactivate these filters without editing httpd.conf and restarting Apache? I'm running Apache 2.0.54 with mod_perl2_RC5. TIA, // haver

Re: Activating/decativating PerlOutputFilterHandler on-the-fly

2005-05-02 Thread Jeff Ambrosino
From within an existing Perl handler/filter, you can dynamically insert ('register') a new filter with the add_output_filter method on the request object: $r-add_output_filter(\callback); And, you can remove a downstream filter (from within an upstream filter) with: $next_f = $f-next;