Created
October 27, 2019 14:47
-
-
Save carlosleonam/803095559a898e76b9b0fd249a5a6500 to your computer and use it in GitHub Desktop.
Permissions for Mautic
This file contains hidden or 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 /var/www/mautic | |
find . -type d -exec chmod 755 {} \; | |
find . -type f -exec chmod 644 {} \; | |
chmod -R g+w app/cache/ | |
chmod -R g+w app/logs/ | |
chmod -R g+w app/config/ | |
chmod -R g+w media/files/ | |
chmod -R g+w media/images/ | |
chmod -R g+w translations/ | |
chown -R $USER:www-data . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment