Back to top Back to top
Light Dark

Beschreibung

bool chmod ( string $filename , int $mode )

Versucht die Zugriffsrechte der angegebenen Datei zu denen in mode definierten zu ändern.

<?php
chmod("/einverzeichnis/einedatei", 755);   // decimal; probably incorrect
chmod("/einverzeichnis/einedatei", "u+rwx,go+rx"); // string; incorrect
chmod("/einverzeichnis/einedatei", 0755);  // octal; correct value of mode
?>

TYPO3

$ chgrp -R apache fileadmin typo3conf typo3temp uploads
$ chmod -R g+rwX,o-w fileadmin typo3temp typo3conf uploads

$ chown -R root:apache typo3_src
$ chmod -R 755 typo3_src
$ chgrp -R www typo3_src
$ typo3_src/typo3: chmod -R g+w ext

# set all sysfolders 755
$ find . -type d -exec chmod 755 {} \;

# set all files 644
$ find . -type f -exec chmod 644 {} \;

$ chmod 640 ./typo3conf/LocalConfiguration.php;
$ chmod 640 ./typo3conf/PackageStates.php;

# remove files "index.php~"
$ find . -type f -name "*~" -exec rm {} \;
# remove all ._* files
$ find . -name "._*" -exec rm -f {} \;

TYPO3 LocalConfiguration

[BE][fileCreateMask] = 0664

[BE][folderCreateMask] = 2775