Created
August 30, 2022 11:16
-
-
Save BekNaji/b50f9f2eefdccd8b33f394c53455b7a1 to your computer and use it in GitHub Desktop.
bitrix permissions of folders and files.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd ~/www | |
find . -type d -exec chmod 775 {} \; | |
find . -type f -exec chmod 664 {} \; | |
find . -type d -exec chown bitrix:bitrix {} \; | |
find . -type f -exec chown bitrix:bitrix {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment