wordpress installation schlägt fehl

lberger

New Member
Wordpress lässt sich nicht intallieren. Es kommt die Fehlermeldung:
Die Installation von WordPress unter https://it-cosmos.com/ ist fehlgeschlagen. terminate called after throwing an instance of 'boost::filesystem::filesystem_error'
what(): boost::filesystem::status: Permission denied: "/opt/psa/var/apspackages/832e7dab-209c-4274-aeca-ec472637fe47/cache/htdocs"
Aborted

Wie kann das gelöst werden?
 
Dies ist ein bekannter Plesk 17 Bug..

Code:
find /usr/local/psa/var/apspackages/ -type f -a -not -perm 644 -exec chmod 644 {} \;
find /usr/local/psa/var/apspackages/ -mindepth 1 -type d -a -not -perm 755 -exec chmod 755 {} \;
 
Back
Top