[Django]-Django-summernote image upload

0👍

django-summernote shipped with backend support for image uploading out of box. So you don’t have to write your own backend for it. MEDIA_ROOT or MEDIA_URL settings may have wrong value for uploading – permission problem or not valid path.

Run django project with runserver and please check the browser console(inspect) and python console after trying to upload an image.

And also refer Need a minimal Django file upload example for handling files on django project.

👤lqez

Leave a comment