If the user that runs your server, which on Linux is not the same as your user that might own those files, do not have the permissions, it will keep saying lack of permissions.
You'll need to know the user your webserver uses (Apache, Nginx, etc). Usually it's
Then after installation:
You might need to install the
You'll need to know the user your webserver uses (Apache, Nginx, etc). Usually it's
www-data or http, so you could use something like this:Code:
setfacl -m user:www-data:rwx config.phpsetfacl -R -m user:www-data:rwx,d:user:www-data:rwx cache files images/avatars/upload store [...]Code:
setfacl -m user:www-data:rx config.phpacl package for the setfacl command.Statistics: Posted by AlfredoRamos — Fri Jun 27, 2025 7:13 pm