in reply to Perl filter

Apache2::Filter was built under 5.006, so you'd have to use the two-argument open instead of a three-argument open something like:

open($fh, '>>').

The three-argument open came later.

Replies are listed 'Best First'.
Re^2: Perl filter
by mrc (Sexton) on Dec 20, 2009 at 09:20 UTC
    Hmm, but open has nothing to do with Apache2::Filter. I was able to append those values without problem.
    Btw, I'm using now Compress::Zlib to uncompress the buffer, manipulate it, then compress it again. Working just fine.
    To check encoding I'm using now
    $r->headers_out->{"Content-Encoding"};

    I'm very happy for finding out the solution myself after 2 days of tests :)