Skip to content

Instantly share code, notes, and snippets.

@psycho0verload
Last active May 19, 2020 12:51
Show Gist options
  • Save psycho0verload/238ae206065533b4e120c092e6026635 to your computer and use it in GitHub Desktop.
Save psycho0verload/238ae206065533b4e120c092e6026635 to your computer and use it in GitHub Desktop.
Datei- und Ordnerrechte für eine frische TYPO3 10.x Installation.
# Folgende Konfigurationen im Install-Tool setzten.
# SYS/folderCreateMask -> 2770
# SYS/fileCreateMask -> 0660
sudo chmod 2770 \
htdocs/ \
htdocs/typo3temp \
htdocs/typo3temp/assets \
htdocs/typo3temp/assets/compressed \
htdocs/typo3temp/assets/css \
htdocs/typo3temp/assets/js \
htdocs/typo3temp/assets/images \
htdocs/typo3temp/assets/_processed_ \
htdocs/typo3temp/var \
htdocs/typo3temp/var/charset \
htdocs/typo3temp/var/cache \
htdocs/typo3temp/var/lock \
htdocs/typo3conf \
htdocs/typo3conf/ext \
htdocs/typo3conf/l10n \
htdocs/fileadmin \
htdocs/fileadmin/_temp_ \
htdocs/fileadmin/user_upload \
htdocs/fileadmin/user_upload/_temp_ \
htdocs/fileadmin/user_upload/_temp_/importexport
sudo chmod 0660 \
htdocs/typo3temp/index.html \
htdocs/typo3temp/var/.htaccess \
htdocs/fileadmin/_temp_/.htaccess \
htdocs/fileadmin/_temp_/index.html \
htdocs/fileadmin/user_upload/_temp_/index.html \
htdocs/fileadmin/user_upload/_temp_/importexport/.htaccess \
htdocs/fileadmin/user_upload/_temp_/importexport/index.html \
htdocs/fileadmin/user_upload/index.html \
htdocs/.htaccess
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment