Re: IOError: Client read error (Timeout?)

2008-05-20 Thread Graham Dumpleton
On May 21, 10:16 am, Aljosa Mohorovic <[EMAIL PROTECTED]> wrote: > On May 20, 12:26 pm, Graham Dumpleton <[EMAIL PROTECTED]> > wrote: > > > Generally you can ignore it, it usually indicates that the user > > pressed reload on a page or navigated off it before the browser could > > send through the

Re: IOError: Client read error (Timeout?)

2008-05-20 Thread Aljosa Mohorovic
On May 20, 12:26 pm, Graham Dumpleton <[EMAIL PROTECTED]> wrote: > Generally you can ignore it, it usually indicates that the user > pressed reload on a page or navigated off it before the browser could > send through the whole request. > > BTW, it is good idea to mention what hosting mechanism yo

Re: IOError: Client read error (Timeout?)

2008-05-20 Thread Graham Dumpleton
Aljosa Mohorovic wrote: > IOError: Client read error (Timeout?) > > sometimes i get this error, any tips on how to handle this kind of > errors? > any comment related to this is welcomed. Generally you can ignore it, it usually indicates that the user pressed reload on a page or navigated off it

Re: IOError: Client read error (Timeout?)

2007-11-03 Thread Graham Dumpleton
FWIW, the Python 2.5 source code violates its own documentation if this is in some way meant to define a standard. That is, in zip and bz2 modules, they raise IOError's with only a string value and no errno. Graham On Nov 4, 9:32 am, Graham Dumpleton <[EMAIL PROTECTED]> wrote: > FWIW, it has bee

Re: IOError: Client read error (Timeout?)

2007-11-03 Thread Graham Dumpleton
FWIW, it has been noted as an issue with mod_python that using IOError directly isn't good, although for slightly other reasons. https://issues.apache.org/jira/browse/MODPYTHON-92 That it isn't using IOError correctly in as much as no errno is present adds to why it shouldn't do as it is. It

Re: IOError: Client read error (Timeout?)

2007-11-02 Thread Bjørn Stabell
On Oct 6, 11:20 pm, Trey <[EMAIL PROTECTED]> wrote: > There are other people that have brought this up a little bit some > time ago. I run a small to medium sized web application that takes > profile pictures. By far my largest customer service issue is people > not being able to upload their phot

Re: IOError: Client read error (Timeout?)

2007-10-09 Thread Malcolm Tredinnick
On Tue, 2007-10-09 at 13:38 +, Trey wrote: > I took the liberty of doing some research on mod_wsgi and it appears > to be a very good alternative solution to mod_python. One which we'll > probably try. > > Is there a reason Django doesn't represent it in it's documentation? I > know everyone

Re: IOError: Client read error (Timeout?)

2007-10-09 Thread Trey
I took the liberty of doing some research on mod_wsgi and it appears to be a very good alternative solution to mod_python. One which we'll probably try. Is there a reason Django doesn't represent it in it's documentation? I know everyone is busy and it could be that it just isn't added yet. I wou

Re: IOError: Client read error (Timeout?)

2007-10-08 Thread Graham Dumpleton
On Oct 9, 8:12 am, Trey <[EMAIL PROTECTED]> wrote: > Interesting approach Malcom, I will read up on a few of the tools to > see if I can catch the error in the act. I have been doing something > similar with strace and some sort of segfault that is very hard to > catch. > > Graham, I haven't resea

Re: IOError: Client read error (Timeout?)

2007-10-08 Thread Trey
Interesting approach Malcom, I will read up on a few of the tools to see if I can catch the error in the act. I have been doing something similar with strace and some sort of segfault that is very hard to catch. Graham, I haven't researched mod_wsgi much, is it an alternative to mod_python or doe

Re: IOError: Client read error (Timeout?)

2007-10-06 Thread Graham Dumpleton
The way mod_python reads request content is a bit broken and can screw up in various ways, albeit rarely. This may be another example to add to the existing ones. The other known examples are: http://issues.apache.org/jira/browse/MODPYTHON-212 http://issues.apache.org/jira/browse/MODPYTHON-23

Re: IOError: Client read error (Timeout?)

2007-10-06 Thread Malcolm Tredinnick
On Sat, 2007-10-06 at 15:20 +, Trey wrote: > There are other people that have brought this up a little bit some > time ago. I run a small to medium sized web application that takes > profile pictures. By far my largest customer service issue is people > not being able to upload their photos. >

Re: IOError: Client read error (Timeout?)

2007-03-30 Thread Enrico
Hi Jeremy, I get this almost daily. The 'application/x-www-form-urlencoded' felt weird for a page that doesn't have forms. I'm not worried also, just curious. :) Thanks. Enrico --~--~-~--~~~---~--~~ You received this message because you are subscribed to the G

Re: IOError: Client read error (Timeout?)

2007-03-30 Thread Jeremy Dunck
On 3/30/07, Enrico <[EMAIL PROTECTED]> wrote: > > I keep getting this error randomly. > > The only differences I see from other requests is the > 'HTTP_CONTENT_TYPE': 'application/x-www-form-urlencoded' and > POST:. > > Is there anyone getting this error? > Is there a solution to this? Yes, I do