Yii2 - The directory is not writable by the Web process | frontend/web/assets

Shaig Khaligli picture Shaig Khaligli · Dec 27, 2015 · Viewed 38.1k times · Source

I have searched this issue on internet but none of them helped me. Also this one doesn`t:

chgrp apache /path/to/mydir
chmod g+w /path/to/mydir

My server is centos 7. Can you help me?

Answer

Sam picture Sam · Feb 3, 2016

Try with following commands:

  1. This will give you the name of apache user.
    ps -ef | grep apache | grep -v grep

    In most of the cases the user will be www-data.

  2. Run these command after going into the /frontend/web folder:
    sudo chgrp www-data ./assets
    and
    sudo chmod g+w ./assets/

Your problem will be solved.