DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22318>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22318

Apache Hangs with Excessive Warnings

           Summary: Apache Hangs with Excessive Warnings
           Product: Apache httpd-2.0
           Version: 2.0.40
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: All
        AssignedTo: [email protected]
        ReportedBy: [EMAIL PROTECTED]


If too many warning messages are generated by a script apache hangs...

Steps to reproduce...
1. Run the following script from the command line which generates 
uninitialized variable warnings...Everything works fine...
2. Run the same script as a CGI program and the server hangs...
3. Change the number of iterations to a lower number (like 5) and run 
again...Everything works fine...

Conclusion:  If the script generates too many warnings apache hangs



#!/usr/bin/perl -w

print "Content-type: text/html\n\n";
for(0 .. 100){
        print "yada: $id<br>\n";
}


Has anyone seen this before?  (Yes I know about use strict, but that would not 
expose the problem now would it?)

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to