On Sep 18, 4:39 am, Karen Tracey <kmtra...@gmail.com> wrote:
> On Thu, Sep 17, 2009 at 1:47 PM, Jashugan <jashu...@gmail.com> wrote:
>
> > Hello,
>
> > I have a user who is trying to upload a large file (> 50MB) to our
> > Django application. The error that they are getting is:
>
> > Request Entity Too Large
> > The requested resource
> > /ri/agent/orders/create/
> > does not allow request data with POST requests, or the amount of data
> > provided in the request exceeds the capacity limit.
>
> > Initially, I was thinking about changing FILE_UPLOAD_MAX_MEMORY_SIZE
> > in settings.py, but the documentation says files larger than this will
> > simply be streamed. And this is played out in the application when we
> > upload 25 MB files.
>
> > I'm running Apache + mod_python + Django 1.1
>
> > Any ideas what settings I can look at?
>
> http://httpd.apache.org/docs/2.0/mod/core.html#limitrequestbody
The limit request body directive is effectively broken in conjunction
with mod_python. Read:
https://issues.apache.org/jira/browse/MODPYTHON-240
Stop using mod_python, use mod_wsgi instead, where it works properly
as mod_wsgi does specific checks of its own in relation to
LimitRequestBody directive before any work done, where as mod_python
relies on lower level Apache HTTP input filter code doing the checks,
and which causes problems as explained in the ticket in mod_python
issue tracker.
Graham
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to
django-users+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---