WordPress on nginx can’t create files

I’m running WordPress with HHVM + nginx and wonder, why WordPress can’t create files and isn’t allowed to write to directories, even if they are at CHMOD 777.

I’m using W3 Total Cache Plugin and get this message:

Read More

enter image description here

But wp-content is at 777 (for testing purposes). Whats wrong with the server configuration?

Related posts

Leave a Reply

2 comments

  1. Nginx need nginx usergroup permission not apache permission.

    Nginx does not have permission to write. So give correct permission.

    Here is correct command.

    chown -R nginx:nginx /var/www/chefgrill.de
    

    This will allow nginx to write.