Re: streaming upload

2008-07-04 Thread umrzyk
On 29 Cze, 22:15, umrzyk <[EMAIL PROTECTED]> wrote: > hi there, > i would like to give my users ability to upload a huge (i.e. 10-20 MB) > files, mostly images. standard uploading using django newforms and > FileField is at the moment not an option. it kills my > server im

Re: streaming upload

2008-07-02 Thread umrzyk
On 29 Cze, 22:15, umrzyk <[EMAIL PROTECTED]> wrote: > hi there, > i would like to give my users ability to upload a huge (i.e. 10-20 MB) > files, mostly images. standard uploading using django newforms and > FileField is at the moment not an option. it kills my > server im

Re: streaming upload

2008-06-30 Thread umrzyk
On 30 Cze, 03:51, Graham Dumpleton <[EMAIL PROTECTED]> wrote: > You may have to to ask the author of nginx mod_wsgi whether streaming > uploads is even possible. > > I vaguely remember from discussions, that due to nginx mod_wsgi being > an event driven system, rather than using a threaded model,

streaming upload

2008-06-29 Thread umrzyk
hi there, i would like to give my users ability to upload a huge (i.e. 10-20 MB) files, mostly images. standard uploading using django newforms and FileField is at the moment not an option. it kills my server immediately. recently i read about streaming upload, and.. wow, that's it! so i patched m