Re: [mp2] Dynamically pushing output filters -- Questions

2005-05-22 Thread Chris Jacobson
Stas Bekman wrote: Chris Jacobson wrote: Hello, I am attempting to write a system which allows output filters to be dynamicaly pushed on the output filter stack at the end of a PerlResponseHandler. That doesn't make any sense, Chris. By the end of the PerlResponseHandler the

Problem with taint

2005-05-22 Thread Mike Cardwell
Hi, I installed the new release of ModPerl2 today. I've not used any of the betas previously so am not sure if the problem is specific to this version or not. In my PerlResponseHandler I have the following code: sub handler { my $r = shift; my( $path ) = $r-filename()=~/^(.*)$/; eval{

Re: [mp2] Dynamically pushing output filters -- Questions

2005-05-22 Thread Tom Schindl
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Chris Jacobson schrieb: | Hello, | |I am attempting to write a system which allows output filters to be | dynamicaly pushed on the output filter stack at the end of a | PerlResponseHandler. These output filters are generated from a master |

Re: [mp2] Dynamically pushing output filters -- Questions

2005-05-22 Thread Chris Jacobson
Tom Schindl wrote: Chris Jacobson schrieb: | Hello, | |I am attempting to write a system which allows output filters to be | dynamicaly pushed on the output filter stack at the end of a | PerlResponseHandler. These output filters are generated from a master | factory object. | | my

Re: DirectoryIndex ignored when using perl-handler

2005-05-22 Thread Thomas Hilbig
--- Geoffrey Young [EMAIL PROTECTED] wrote: since you're new to mod_perl it's probably not obvious from that thread what the solution is. http://marc.theaimsgroup.com/?l=apache-modperlm=111445150218566w=2 the code at the bottom of that link (My::Fixup) needs to be enabled from a

Re: APR::Base64 Bug

2005-05-22 Thread Torsten Foertsch
On Sunday 22 May 2005 19:18, Torsten Foertsch wrote: there is something wrong with APR::Base64. [EMAIL PROTECTED]:~ perl -MAPR::Base64 -MData::Dumper -e '$x=APR::Base64::encode( x ); print $x\n.Dumper( [split , $x] ), length=.length($x).\n;' eA== $VAR1 = [ 'e', 'A',

Re: [MP2] : REDIRECT_ERROR_NOTES not set on errordocument redirect

2005-05-22 Thread Mark
Stas Bekman wrote: Mark wrote: Stas Bekman wrote: Mark wrote: -8-- Start Bug Report 8-- 1. Problem Description: $ENV{REDIRECT_ERROR_NOTES} not working with MP2 Using latest everything (modperl 2 RC5). To illustrate, I simply configure Apache with

Re: [mp2] porting older mp2 code to 2.0.0 - I'm stuck with params from apreq!

2005-05-22 Thread Cure
Carl Brewer wrote: Carl Brewer wrote: Apache2::RequestUtil-request($r).; If I'd looked in : docs/html/group__apreq__xs__request.html I'd have seen that all I needed to do was to change use Apache::Request; to use Apache2::Request; and my $req =