I updatet to from Mautic 6.0.7 to 7.0.1 and on my first view. all is working.
Thank all for their work.
How updated:
Log in via the command line, and change directory to the Mautic directory using the command:
cd /your/mautic/directory
In my case: cd /var/www/html/mautic/
sudo -u www-data php bin/console mautic:update:find
sudo -u www-data php bin/console mautic:update:apply
sudo -u www-data php bin/console mautic:update:apply --finish
If rights problems:
Files Permission und Ownership:
Owner to Apache
sudo chown -R www-data:www-data /var/www/html/mautic
Files set 644
sudo find /var/www/html/mautic -type f -exec chmod 644 {} +
Directory set 755
sudo find /var/www/html/mautic -type d -exec chmod 755 {} +
Some special rights fĂźr Apache auf Cache, Logs, Config, Media
sudo chmod -R g+w /var/www/html/mautic/var/cache \
/var/www/html/mautic/var/logs \
/var/www/html/mautic/app/config \
/var/www/html/mautic/media/files \
/var/www/html/mautic/media/images \
/var/www/html/mautic/translations
Delete Cache:
sudo -u www-data php /var/www/html/mautic/bin/console cache:clear






