It's very reproducible and occurs when there is no
other server activity. I have built and tested a
small CGI script to dump pages of vertical lines. Then I use another Perl script (run locally or from
another machine) to pull the page and run an MD5 hash
against the contents to catch the bug.
The test page is at
http://www.sygration.com/cgi-bin/bigcgi
#!/usr/bin/perl
$|=1 ;
use strict ; print "Content-type: text/html\n\n";
print "<html><body><h1>Big CGI !</h1>\n" ;
for(my $i=1; $i<=400; $i++) {
print "| | | | | | | | | | | | | | | |\n" ;
}
print "<h2>Done</h2></body></html>\n" ;
I haven't included it, but the Perl script to pull
this page and run MD5 is available at
http://www.sygration.com/pagehammer.pl To hit the webpage 30 times and dump the MD5 each
time, use: ./pagehammper.pl
http://www.sygration.com/cgi-bin/bigcgi 30
I run this 3 times (3x30) and see the same md5sum. Have you tried running in a single server mode? This should make sure that you hit the same server all the time.
Also please submit a complete bug report so we are on the same line here: http://perl.apache.org/bugs/
__________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com
-- Report problems: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html List etiquette: http://perl.apache.org/maillist/email-etiquette.html