Re: Upgrade to Apache 2.4 breaks encoding in a PerlOutputFilterHandler

2015-11-30 Thread Jie Gao
Hi Vincent Thanks for sharing your solution. Regards, Jie * Vincent Veyron wrote: > Date: Sun, 29 Nov 2015 19:15:20 +0100 > From: Vincent Veyron > To: Jie Gao > CC: modperl@perl.apache.org > Subject: Re: Upgrade to Apache 2.4 breaks encoding in a > PerlOutputFilter

Re: Upgrade to Apache 2.4 breaks encoding in a PerlOutputFilterHandler

2015-11-29 Thread Vincent Veyron
On Sun, 29 Nov 2015 18:18:21 + Dr James Smith wrote: > I knew it was a problem - but due to our set up of front end proxy / > mod_perl then this wasn't an issue.. the mod_perl server handles the > filter - and the front end proxy does the gzipping (we use Brocade > Traffic Mangers and Apac

Re: Upgrade to Apache 2.4 breaks encoding in a PerlOutputFilterHandler

2015-11-29 Thread Dr James Smith
I knew it was a problem - but due to our set up of front end proxy / mod_perl then this wasn't an issue.. the mod_perl server handles the filter - and the front end proxy does the gzipping (we use Brocade Traffic Mangers and Apache in different places) - in most production environments this is

Re: Upgrade to Apache 2.4 breaks encoding in a PerlOutputFilterHandler

2015-11-29 Thread Vincent Veyron
On Sun, 29 Nov 2015 19:59:28 +1100 Jie Gao wrote: > > Well, check out this: > https://perl.apache.org/docs/2.0/user/handlers/filters.html#C_PerlOutputFilterHandler_ > . > Hi Jie, Yes, the instructions on this page work well; but with those, I need to add 'SetOutputFilter DEFLATE' in every v

Re: Upgrade to Apache 2.4 breaks encoding in a PerlOutputFilterHandler

2015-11-29 Thread Jie Gao
* Vincent Veyron wrote: > Date: Fri, 29 May 2015 19:13:50 +0200 > From: Vincent Veyron > To: "Kevin A. McGrail" > CC: modperl@perl.apache.org > Subject: Re: Upgrade to Apache 2.4 breaks encoding in a > PerlOutputFilterHandler > X-Mailer: Sylpheed 3.2.0 (

Re: Upgrade to Apache 2.4 breaks encoding in a PerlOutputFilterHandler

2015-06-03 Thread Vincent Veyron
On Wed, 3 Jun 2015 17:47:25 +0200 Vincent Veyron wrote: > > FYI, the problem disappears when using mod_perl-2.0.9 RC2. > Scratch this, I had forgotten to enable mod_deflate. It's still there. Bummer.

Re: Upgrade to Apache 2.4 breaks encoding in a PerlOutputFilterHandler

2015-06-03 Thread Vincent Veyron
On Thu, 28 May 2015 09:06:13 -0400 "Kevin A. McGrail" wrote: > On 5/27/2015 6:45 PM, Vincent Veyron wrote: > >> and what version of MP are you using? Hi, FYI, the problem disappears when using mod_perl-2.0.9 RC2. All is well. -- Salutations, Vincent V

Re: Upgrade to Apache 2.4 breaks encoding in a PerlOutputFilterHandler

2015-05-29 Thread Vincent Veyron
I found the problem : it appears mod_deflate now runs _before_ my PerlOutputFilterHandler, which then gets gzip encoded content. Disabling mod_deflate fixes it, but this was not necessary in Apache 2.2. Something must have changed in the priority type of the modules. --

Re: Upgrade to Apache 2.4 breaks encoding in a PerlOutputFilterHandler

2015-05-28 Thread Kevin A. McGrail
On 5/27/2015 6:45 PM, Vincent Veyron wrote: and what version of MP are you using? #dpkg -l *mod-perl* libapache2-mod-perl2 2.0.9~1624218-2 i386 OK, I can't tell if that's older or newer than rc1 but it's at least not the 2.0.7 issue I had to deal with recently.

Re: Upgrade to Apache 2.4 breaks encoding in a PerlOutputFilterHandler

2015-05-27 Thread Vincent Veyron
On Wed, 27 May 2015 15:03:39 -0400 "Kevin A. McGrail" wrote: Hi Kevin, > How did you upgrade to 2.4 I use the current debian stable (wheezy until now); I followed this to the t : https://www.debian.org/releases/jessie/amd64/release-notes/ch-upgrading.en.html The crux of it being to run apt-g

Re: Upgrade to Apache 2.4 breaks encoding in a PerlOutputFilterHandler

2015-05-27 Thread Kevin A. McGrail
> When I upgrade to Apache 2.4, this happens How did you upgrade to 2.4 and what version of MP are you using? I ask because I've been running into distros running MP 2.0.7 with Apache httpd 2.4 so I want to help rule out that issue. Regards, KAM

Upgrade to Apache 2.4 breaks encoding in a PerlOutputFilterHandler

2015-05-27 Thread Vincent Veyron
Hi list, My application has the following general configuration, which works fine with 2.2 : a perl script generates the 'core' html content for a given location, and a filter adds some additional generic content. The basic Apache configuration directives are : SetHandler perl-script