You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 23, 2021. It is now read-only.
Hi everyone, I am using django 1.11, django-tinymce4-lite 1.7.4.
### This problem only occurs in internet explorer 11.
ManifestStaticFilesStorage is a subclass of the StaticFilesStorage storage backend which stores the file names it handles by appending the MD5 hash of the file’s content to the filename. For example, the file js/tinymce.min.js would also be saved as js/tinymce.min.500c07cb726a.js.
If I switch my storage to StaticFilesStorage it works fine.
Has anyone come across that yet? Or a suggestion how that can be solved (with ManifestStaticFilesStorage to keep)
The text was updated successfully, but these errors were encountered:
Is this the problem: The generated HTML contains links like js/tinymce.min.js but it should be ss/tinymce.min.500c07cb726a.js to match how the storage class saved it
(Probably not, as you wrote that the problem is browser-specific, which wouldn’t be the case with that)
Yes, the problem only occurs in internet explorer and only when I use renamed tinymce.js.
Actually the problem has nothing to do with ManifestStaticFilesStorage.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi everyone, I am using django 1.11, django-tinymce4-lite 1.7.4.
### This problem only occurs in internet explorer 11.
ManifestStaticFilesStorage
is a subclass of theStaticFilesStorage
storage backend which stores the file names it handles by appending the MD5 hash of the file’s content to the filename. For example, the filejs/tinymce.min.js
would also be saved asjs/tinymce.min.500c07cb726a.js
.If I switch my storage to
StaticFilesStorage
it works fine.Has anyone come across that yet? Or a suggestion how that can be solved (with
ManifestStaticFilesStorage
to keep)The text was updated successfully, but these errors were encountered: