My application is setup to work with django-tinymce4-lite and it works great when using offline/local media storage. What i mean by that is if I choose to upload an image, the image gets uploaded to media/uploads, including several thumbnail 'versions' that get saved to media/_versions.
When I enable s3 as my media storage location, the image files are getting uploaded to the uploads folder in my bucket correctly (folder is auto created at upload time), however thumbnails are not generated alongside, and in fact, after an upload, the _versions folder does not get created at all.
While I'm able to insert these images after upload using the image insert button, it's a bit frustrating in that unless the image has a descriptive filename, its impossible to tell which image is which without that image preview.
Any help would be greatly appreciated!
Here are the relevant settings regarding tinymce and s3 configuration:
Hi there--
My application is setup to work with django-tinymce4-lite and it works great when using offline/local media storage. What i mean by that is if I choose to upload an image, the image gets uploaded to
media/uploads
, including several thumbnail 'versions' that get saved tomedia/_versions
.When I enable s3 as my media storage location, the image files are getting uploaded to the
uploads
folder in my bucket correctly (folder is auto created at upload time), however thumbnails are not generated alongside, and in fact, after an upload, the_versions
folder does not get created at all.While I'm able to insert these images after upload using the image insert button, it's a bit frustrating in that unless the image has a descriptive filename, its impossible to tell which image is which without that image preview.
Any help would be greatly appreciated!
Here are the relevant settings regarding tinymce and s3 configuration:
Here is
storage_backends.py
: