Skip to content

Mautic

Everything about Mautic, from installation to configuration to creating campaigns and sending emails.

KISSmauticDKR 5.1.1 Your next favorite Mautic Docker Container.

If you like to deploy your tools with Docker, you probably already use or have used the fantastic official docker images for Mautic.
The official images are great for complex deployments and allow separation of concerns, to a certain degree… perfect for, let’s say… Kubernetes and similar tools running in a cluster of servers…

But for the average developer or geeky marketer who just wants to give Mautic a quick spin, the official images are serious overkill, and its complexity requires to first understand how these images operate before deployment, prepare the proper infrastructure, etc…

Tempted? Give it a quick spin:
docker run -d --name KISSmauticDKR -p 8080:80 martechws/kiss-mautic:5.1.1
Takes just a few seconds to launch, then go to http://localhost:8080

Read More »KISSmauticDKR 5.1.1 Your next favorite Mautic Docker Container.

toolBelt: Mautic scripts, config files and automations.

After several years running Mautic for clients, this is the way I have come up to facilitate most things and make my work easier, faster and above all, more secure, since it allows me to minimize human error.
I used to host these files on a file server, but over time it has become an interesting collection, so I have now moved it to GitHub instead.

toolBelt is a new repo with lots of little goodies:

https://github.com/Martech-WorkShop/toolBelt

Read More »toolBelt: Mautic scripts, config files and automations.

Upgrade from Mautic 5.1.0 to Mautic 5.1.1

First, let’s get into position.
cd /var/www/html

Then download the upgrade package.
wget https://github.com/mautic/mautic/releases/download/5.1.1/5.1.1-update.zip

We unzip the file to deploy its contents.
unzip 5.1.1-update.zip
When asked: replace .all-contributorsrc? [y]es, [n]o, [A]ll, [N]one, [r]ename:
REPLY: A or All

Let’s give specific permissions to the files we just added
chmod 755 -R /var/www/html && chown -R www-data:www-data /var/www/html

Give Apache a good’ ol restart…
service apache2 restart

Round everything up by clearing the Mautic cache
sudo -u www-data php /var/www/html/bin/console cache:clear

— >> Done! << —

Read More »Upgrade from Mautic 5.1.0 to Mautic 5.1.1

Install Mautic with Zero Linux Knowledge Required: AutoMautic

AutoMautic 511 is here!
The single-command Mautic installation script to install Mautic 5.1.1 in a jiffy, the right way…
That’s it, nothing more, nothing less… No Panels required, no hosting to buy, no DDEV, no Docker, no Composer, No nothing, just one command that will take care of everything for you…

Installs Apache, MariaDB, PHP, downloads and installs Mautic automatically, gets and installs an SSL certificate and does quite a bit of configuration for you, all automatically, like the Mautic cronjobs, Apache config, MySQL config and many other things…

Read More »Install Mautic with Zero Linux Knowledge Required: AutoMautic