Missing staticfiles manifest entry for 'django_summernote/summernote.css'
See original GitHub issueI got this error when using STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.ManifestStaticFilesStorage'
ValueError: Missing staticfiles manifest entry for 'django_summernote/summernote.css'
I’m not sure if it relates to #170
DEBUG = False Django==1.11.4 django-summernote==0.8.8.2
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
ValueError: Missing staticfiles manifest entry for 'favicon.ico'
If a file isn't found in the staticfiles.json manifest at runtime, a ValueError is raised. This behavior can be disabled by subclassing ...
Read more >ValueError: Missing staticfiles manifest entry for ... - GitHub
When using S3ManifestStaticStorage, even with manifest_strict = False, I continue to get ValueError: Missing staticfiles manifest entry for ...
Read more >Static Files in Django - Dan's Cheat Sheets's documentation!
Managing static files in Django seems to be one of the most confusing ... What if you get the error “ValueError: Missing staticfiles...
Read more >raise ValueError("Missing staticfiles manifest entry for '%s ...
When I set Debug = True in my settings.py, it will load just fine but exposes variables and such when there are errors...
Read more >ValueError: Missing staticfiles manifest entry for 'favicon.ico'
Django : ValueError: Missing staticfiles manifest entry for 'favicon.ico' [ Beautify Your Computer ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@tamhv
I also made
DjsManifestStaticFilesStorage
which extendsManifestStaticFilesStorage
.I also encountered the same error. I solved the problem by overriding
hashed_name
method.I just removed the code which checks file exist. It seems to work, but I am not sure if it’s correct. I have to study more in detail. That’s why I told you that I would provide the code as soon as possible.
I also want your feedback. Thank you.
@tamhv
Thank you for your response. We will close this issue at this point.
I also wonder if there’s a side-effect on that change. If you encounter another problem, feel free to tell us. And, we will talk again after opening the new issue.