On Dec 21, 5:59 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > On Dec 21, 12:08 am, Graham Dumpleton <[EMAIL PROTECTED]> > wrote: > > > Your site is probably getting hit by a spam bot trying to post to > > random URLs in the hope it finds public wiki like comment fields. It > > is most likely closing the request connection before your code has > > read all the request content. > > > What web server are you using? What shows in your server access logs > > at the same time. Ie., what URL is used and it is POST or GET? > > Thanks, that makes some sense. I'm running Apache/2.2.3 (Ubuntu) > mod_wsgi/1.1 Python/2.5.1c1. This would be a POST url. I didn't look > in the server logs yet, but the error report has a lot of info. What > information would be useful to know?
At the moment what is probably of most interest is the URLs from the Apache access log corresponding to what was being requested around the time the error appeared. Knowing what the URLs were should be easy to identify it was a spam bot as they will not really match anything your application was expecting. BTW, highly encourage you to upgrade to mod_wsgi 1.3 as there were a few issues fixed since version you are using that can result in daemon process hangs. For details see: http://code.google.com/p/modwsgi/wiki/ChangesInVersion0102 http://code.google.com/p/modwsgi/wiki/ChangesInVersion0103 Graham --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web.py" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/webpy?hl=en -~----------~----~----~----~------~----~------~--~---
