Re: file upload fails with slow network bandwith in django

2016-02-17 Thread Pablo Conesa
El martes, 16 de febrero de 2016, 21:12:32 (UTC+1), James Schneider escribió: > > How long does the file upload work before receiving the error? > There is no response from the server (fiddler returns -1, whatever this means) >>> >>> Well, no response from the server d

Re: file upload fails with slow network bandwith in django

2016-02-16 Thread James Schneider
> > How long does the file upload work before receiving the error? >>> >>> There is no response from the server (fiddler returns -1, whatever this >>> means) >>> >> >> Well, no response from the server doesn't necessarily mean that there >> were no logs. Can you check the error and access logs

Re: file upload fails with slow network bandwith in django

2016-02-16 Thread Pablo Conesa
de febrero de 2016, 23:04:48 (UTC+1), James Schneider >> escribió: >>> >>> >>> >>> On Mon, Feb 15, 2016 at 10:20 AM, Pablo Conesa >>> wrote: >>> >>>> Hi, I posted this in stackoverflow. Now I'm trying here: >>>

Re: file upload fails with slow network bandwith in django

2016-02-15 Thread James Schneider
>>> Hi, I posted this in stackoverflow. Now I'm trying here: >>> http://stackoverflow.com/questions/35413649/file-upload-fails-with-slow-network-bandwith-in-django >>> >>> I've got a code working fine that uploads a file to a DJANGO server. >>> >

Re: file upload fails with slow network bandwith in django

2016-02-15 Thread Pablo Conesa
Thanks James. answers in line: El lunes, 15 de febrero de 2016, 23:04:48 (UTC+1), James Schneider escribió: > > > > On Mon, Feb 15, 2016 at 10:20 AM, Pablo Conesa > wrote: > >> Hi, I posted this in stackoverflow. Now I'm trying here: >> http://stackoverflow

Re: file upload fails with slow network bandwith in django

2016-02-15 Thread Pablo Conesa
p://www.google.com/url?q=http%3A%2F%2Fstackoverflow.com%2Fquestions%2F6816215%2Fgunicorn-nginx-timeout-problem&sa=D&sntz=1&usg=AFQjCNEaoPVXq87HfcUZARiv5oAZjTM8Fw> > > On Mon, Feb 15, 2016 at 4:20 PM, Pablo Conesa > wrote: > >> Hi, I posted this in stackoverflow. Now I'm

Re: file upload fails with slow network bandwith in django

2016-02-15 Thread James Schneider
On Mon, Feb 15, 2016 at 10:20 AM, Pablo Conesa wrote: > Hi, I posted this in stackoverflow. Now I'm trying here: > http://stackoverflow.com/questions/35413649/file-upload-fails-with-slow-network-bandwith-in-django > > I've got a code working fine that uploads a file to a

Re: file upload fails with slow network bandwith in django

2016-02-15 Thread Ezequiel Bertti
, I posted this in stackoverflow. Now I'm trying here: > http://stackoverflow.com/questions/35413649/file-upload-fails-with-slow-network-bandwith-in-django > > I've got a code working fine that uploads a file to a DJANGO server. > > It works fine on a fine connection.

file upload fails with slow network bandwith in django

2016-02-15 Thread Pablo Conesa
Hi, I posted this in stackoverflow. Now I'm trying here: http://stackoverflow.com/questions/35413649/file-upload-fails-with-slow-network-bandwith-in-django I've got a code working fine that uploads a file to a DJANGO server. It works fine on a fine connection. Now if, using

File Upload fails

2011-03-17 Thread arapaho
Hi, Please scratch the previous question--I found template errors were the cause. Thanks, Bob -- 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, s

Re: File Upload fails

2011-03-17 Thread Matias Aguirre
You are missing the enctype form attribute needed for files input fields. Your form definition should be: Check http://www.w3.org/TR/html401/interact/forms.html#adef-enctype for details. Matías Excerpts from arapaho's message of Thu Mar 17 15:53:45 -0300 2011: > Hi, > > Rather new to Dja

File Upload fails

2011-03-17 Thread arapaho
Hi, Rather new to Django and using 1.2.5 and Windows, I am hung up trying to upload a file. I get a post request with request.FILES empty. My VIEW is: def intro(request): c = {} c.update(csrf(request)) if request.method == 'POST': #see if form submitted form = FileUploadFor