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

  1. For files use: find /home/xxxxxx/domains/xxxxxxx.com/public_html -type f -exec chmod 644 {} \;
  2. 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

  1. chgrp the entire web space to the FTP group so that only those with FTP access can write to the server.
  2. chmod the entire web space to 764 or 664 will be possible giving other users write access as well

Siehe auch: Joomla

Tags: Joomla Chmod