Skip to content

Instantly share code, notes, and snippets.

@xnohat
Created August 21, 2020 07:49
Show Gist options
  • Select an option

  • Save xnohat/9e26bb1956e0a38b7bea5562089983b8 to your computer and use it in GitHub Desktop.

Select an option

Save xnohat/9e26bb1956e0a38b7bea5562089983b8 to your computer and use it in GitHub Desktop.
File Permission for Mautic install
cd /var/www/mautic
mkdir app/spool/
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/
chmod -R g+w app/spool/
chmod -R g+w themes
chown -R $USER:www-data .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment