Assuming Suite is running under the username numjoom
. and Group is named psacln
:
cd (your suite 8.5 base dir, not public/legacy )
sudo chown -R numjoom:psacln .
sudo chmod -R 755 .
sudo chmod -R 775 cache custom modules themes data upload
sudo chmod 775 config_override.php 2>/dev/null
./bin/console cache:clear
If this fails, try from a browser window running in “Incognito mode” or “Private Browsing”.
Either way, report back your results.
spok
22
cache custom modules themes data upload are in public/legacy
Permissions where the point.
On this side
one can read
find . -type d -not -perm 2755 -exec chmod 2755 {} ;
find . -type f -not -perm 0644 -exec chmod 0644 {} ;
obviously I set permissions this way
So setting all to 755 and setting the dirs cache custom modules themes data upload to 775 solved it.
Runs now as it should.
Thanks a lot and best regards.
If my post contained the answer that solved your issue, please click on “Solution” on that post.