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
I followed the documentation but I'm getting this:
Uncaught RuntimeException: Failed to save file /var/www/test.tld/user/config/security.yaml in /var/www/test.tld/vendor/rockettheme/toolbox/File/src/AbstractFile.php:369
I followed the troubleshooting recommendation and tried:
chown -R joeblow:staff .
find . -type f -exec chmod 664 {} \;
find ./bin -type f -exec chmod 775 {} \;
find . -type d -exec chmod 775 {} \;
find . -type d -exec chmod +s {} \;
But it doesn't help. I'm using CentOS 8, PHP 7.4.19 and nginx 1.14.1.
The text was updated successfully, but these errors were encountered:
It does sound like that your server is using different permissions for your user. Apache usually uses something like apache as the user and group, so you may want to tweak the permissions of the files or change the apache user for the site to yours.
You can try to temporarily set the folder/file permission to be world-writable -- if the error goes away, you will at least know for sure where the issue is.
To fix it, it really depends on the server and generally means changing the permission settings either for your server or user (or both). The easiest fix would be to create one site per user and just give nginx the same user and group. Try googling on how to do that in your server environment.
I followed the documentation but I'm getting this:
I followed the troubleshooting recommendation and tried:
But it doesn't help. I'm using CentOS 8, PHP 7.4.19 and nginx 1.14.1.
The text was updated successfully, but these errors were encountered: