Juergen Daubert
Sun, 26 Oct 2003 05:37:01 -0800
On Sat, Oct 25, 2003 at 09:41:18PM +0200, [EMAIL PROTECTED] wrote: > Hi. Hi Michiel, > After a lot of fiddling I have come up with a new release: 1.5b6. Get it > at www.mathopd.org. I'm sorry to say, but b6 breaks something in the CGI stuff. Some of my simple scripts will not run with b6, with b5 they do. One example is the attached perl script, which is part of the apache sources. I've got a lot of 'pipe_run: revents=17' messages in the error log. While doing some stress tests with the apache ab tool, I got many failed request, with b5 none. If I can help to track down the problem, please tell me what to do. Greetings Jürgen -- [EMAIL PROTECTED]
#!/usr/bin/perl
print "Content-type: text/plain\n\n";
foreach $var (sort(keys(%ENV))) {
$val = $ENV{$var};
$val =~ s|\n|\\n|g;
$val =~ s|"|\\"|g;
print "${var}=\"${val}\"\n";
}