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
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
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
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
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
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