Mautic App
About
Mautic a free and opensource marketing automation tool.
- Questions? Ask in the Cloudron Forum - Mautic
- Mautic Website
- Mautic forum
- Mautic issue tracker
System cron jobs
Mautic often requires cron jobs to be triggered manually. For this, open the Web terminal and run the job manually like so:
sudo -E -u www-data php /app/code/bin/console mautic:segments:update
You can look into /app/data/crontab.system
to look into the various pre-configured cron jobs.
Custom cron jobs
For cron support, app custom commands in the app's cron section.
The crontab contains a line like:
0,15,30,45 * * * * sudo -E -u www-data php /app/code/app/console mautic:integration:fetchleads --integration=Hubspot
Clearing cache
To clear the cache, you can either delete /run/mautic/var/cache
or you can run the following command
using the Web terminal:
sudo -E -u www-data php /app/code/bin/console cache:clear