Skip to content Skip to sidebar Skip to footer

File Upload In Django Modelform

I am trying to upload documets in appengine-django. Docs getting uploaded successfully with pure django code [ using python manage.py runsever ]. But when i am trying to run django

Solution 1:

You may solve the conundrum by using Uploadcare, it can help in situations when you have little or no control over host filesystem (GAE, heroku, shared hosting or whatnot). Uploaded files will be stored in Uploadcare and you will store file UUIDs or URLs in your DB.

There is Django package: pyuploadcare

disclosure: I am one of Uploadcare developers and am posting this not to shamelessly promote the service but because it was built to solve cases like this one.

Post a Comment for "File Upload In Django Modelform"