Django Image Uploading
I have a problem with image uploading. For now, chosen image file is not copied to destination directory and path to this file is not added to database. I'm giving my code below: m
Solution 1:
https://docs.djangoproject.com/en/dev/topics/http/file-uploads/
your form should have the enctype="multipart/form-data" or request.FILES won't have any data stream associated
Post a Comment for "Django Image Uploading"