Chmod
Chmod für Joomla richtig setzen
Kurz:
- Dateien auf 644 - Verzeichnisse auf 755
Empfohlener Chmod für Joomla:
Siehe dazu Doku: http://docs.joomla.org/Security_Checklist_7
- For files use: find /home/xxxxxx/domains/xxxxxxx.com/public_html -type f -exec chmod 644 {} \;
- For directories use: find /home/xxxxxx/domains/xxxxxxx.com/public_html -type d -exec chmod 755 {} \;
Oder
Siehe dazu Doku: http://docs.joomla.org/How_can_you_avoid_using_chmod_0777_to_enable_installs%3F
- chgrp the entire web space to the FTP group so that only those with FTP access can write to the server.
- chmod the entire web space to 764 or 664 will be possible giving other users write access as well
Siehe auch: Joomla