[Django]-OSError at /admin/pages/richtextpage/3/ [Errno 13] Permission denied: '/static'

2👍

This error are thrown because your web server (Apache, Nginx, etc.) haven’t permission to write in /your_project/static/ directory. You need find out from what user web server process run and set permissions for this user to static directory.

Leave a comment