You are viewing a plain text version of this content. The canonical link for it is here.
Posted to docs-cvs@perl.apache.org by ph...@apache.org on 2007/11/29 21:12:16 UTC

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@perl.apache.org
For additional commands, e-mail: docs-cvs-help@perl.apache.org