5

I am looking for an example which does a file upload with a progress bar, in Django. I have been trying djangp-uploadify for quiet sometime, but have not been able to get it working. I have been trying something similar to that given in django+uploadify - don't working and also in https://github.com/tstone/django-uploadify/wiki

Quick Help would be great

RamC
  • 1,287
  • 1
  • 11
  • 15
sprezzatura
  • 472
  • 5
  • 17
  • 1
    Django-uploadify worked well for me, but you do run into a multitude of Flash domain-related security problems. And you'll also need to write a chunk of really ugly code to relate the file you are uploading with the user currently logged in, as Flash won't send the cookies to your upload script. – dguaraglia Jun 04 '10 at 12:08
  • You have a perfectly good answer, and you got it working. And you didn't accept it. Why? – Lennart Regebro Dec 29 '10 at 09:30
  • https://github.com/blueimp/jQuery-File-Upload/ is a perfect solution for a non-flash solution. – sprezzatura Jul 31 '11 at 17:50

1 Answers1

1

I used swfupload and it worked fine for me.
But there are some gotchas which you should take care of
The answer in this thread Code samples for Django + SWFUpload? helped me
Code samples for Django + SWFUpload?
Code samples for Django + SWFUpload?

Community
  • 1
  • 1
Rajani Karuturi
  • 3,450
  • 3
  • 27
  • 40