This is an updated version of an old question I asked. I've now done a lot more testing, plus the old question got hijacked.

I'm getting a request data read error when trying to upload files to the Django admin interface.

Files under about 150k work, but bigger files always fail and almost always at around 192k (that's 3 chunks) completed, sometimes at around 160k. The Exception I get is below.

File "/usr/lib/python2.4/site-packages/django/http/multipartparser.py", line 405, in read
   return self._file.read(num_bytes)

IOError: request data read error

I've tried Chrome and Firefox on Windows and Firefox on Mac - Same results.
I can upload to other sites so I don't think it's my connection.
I'm running python 2.4, django 1.1, mod_wsgi, on CentOS (a media temple DV server)
Locally it's fine (Django development server)

Everything I've found on this issue says it's a mod_python issue and that changing to mod_wsgi will fix it, but I am running mod_wsgi. Can anyone help?

link|improve this question

Doesn't look like it got hijacked to me. You do understand that StackOverflow is a really bad place to try and debug issues where there is a non obvious answer. If you think this is in any way related to mod_wsgi or how it interacts with Apache, then read 'code.google.com/p/modwsgi/wiki/WhereToGetHelp';. The preferred channel if you want to explore whether it is a Apache/mod_wsgi related issue is to use the mod_wsgi mailing list. – Graham Dumpleton Apr 20 '10 at 6:16
Thanks Graham, I did look on the modwsgi Google Group, but I could not find anything relevant. I've really got no Idea where the problem is so I thought I'd ask here. I'll try asking at modwsgi too. – Jake Apr 20 '10 at 22:12
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.