On Fri, 2003-11-21 at 19:13, Jordan Lederman wrote: > The page located at http://perl.apache.org/docs/1.0/guide/ > debug.html#Handling_the__User_pressed_Stop_button__case > says that things can be more complex with mod_perl.... can you shed any light > on that for me?
It simply means that filehandles and other global resources are not automatically cleared for you at the end of a request, since the Perl interpreter is not exiting. Again, I don't think this is the cause of your problems, since apache no longer kills your script when the client breaks the connection. What is LogLevel set to in your httpd.conf? If it's info or debug, you get these warnings even though they are harmless. I expect that either your problem will go away when you upgrade apache or it is a bug in your DBI code somewhere. If upgrading doesn't help, try to trim down your code to a simple example that demonstrates the issue. - Perrin -- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html