Re: Weird response from both CGI and modperl handlers

2007-06-20 Thread Cyril SCETBON
Torsten Foertsch wrote: On Wednesday 20 June 2007 09:45, Cyril SCETBON wrote: Are we able to disable the chunk transfer ? To send all in one shot ? Add a Content-Length output header and avoid output filters that can change the content length. Great. It works :-) when using $r->ser_content

Re: Weird response from both CGI and modperl handlers

2007-06-20 Thread Cyril SCETBON
Torsten Foertsch wrote: On Wednesday 20 June 2007 09:45, Cyril SCETBON wrote: Are we able to disable the chunk transfer ? To send all in one shot ? Add a Content-Length output header and avoid output filters that can change the content length. Great. It works :-) when using $r->ser_content

Re: Weird response from both CGI and modperl handlers

2007-06-20 Thread Torsten Foertsch
On Wednesday 20 June 2007 09:45, Cyril SCETBON wrote: > Are we able to disable the chunk transfer ? To send all in one shot ? Add a Content-Length output header and avoid output filters that can change the content length. Or use HTTP/1.0 Torsten pgpytV5g1jL48.pgp Description: PGP signature

Re: Weird response from both CGI and modperl handlers

2007-06-20 Thread Cyril SCETBON
Are we able to disable the chunk transfer ? To send all in one shot ? Geoffrey Young wrote: Cyril SCETBON wrote: Hi people, I've got some problem with both cgi and modperl. when I post something to /perl/test.pl which just print header and a string I got some strange numbers. The post is do

Re: Weird response from both CGI and modperl handlers

2007-06-19 Thread Geoffrey Young
Cyril SCETBON wrote: > Hi people, > > I've got some problem with both cgi and modperl. > when I post something to /perl/test.pl which just print header and a > string I got some strange numbers. The post is done with a php script. > > test.pl : > > use strict; > use CGI qw/:standard/; > > pri

Weird response from both CGI and modperl handlers

2007-06-19 Thread Cyril SCETBON
Hi people, I've got some problem with both cgi and modperl. when I post something to /perl/test.pl which just print header and a string I got some strange numbers. The post is done with a php script. test.pl : use strict; use CGI qw/:standard/; print header; print("\ncoucou\n"); and below i