
phred at apache
Nov 29, 2007, 12:12 PM
Post #1 of 1
(368 views)
Permalink
|
|
svn commit: r599567 - /perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/RequestRec.pod
|
|
Author: phred Date: Thu Nov 29 12:12:15 2007 New Revision: 599567 URL: http://svn.apache.org/viewvc?rev=599567&view=rev Log: a common mistake when passing off to mod_proxy is to not supress any perl content handlers Modified: perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/RequestRec.pod Modified: perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/RequestRec.pod URL: http://svn.apache.org/viewvc/perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/RequestRec.pod?rev=599567&r1=599566&r2=599567&view=diff ============================================================================== --- perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/RequestRec.pod (original) +++ perl/modperl/docs/trunk/src/docs/2.0/api/Apache2/RequestRec.pod Thu Nov 29 12:12:15 2007 @@ -1516,7 +1516,12 @@ don't -- C<mod_proxy>'s own post_read_request handler will override your settings (as it will run after the mod_perl handler). +And you may also want to add + $r->set_handlers(PerlResponseHandler => []); + +so that any response handlers which match apache directives +will not run in addition to the mod_proxy content handler. --------------------------------------------------------------------- To unsubscribe, e-mail: docs-cvs-unsubscribe[at]perl.apache.org For additional commands, e-mail: docs-cvs-help[at]perl.apache.org
|