Mautic PC and Mobile Shows Different

Your software
My Mautic version is: 4.1.0
My PHP version is:7.4
My Database type and version is: Mariadb 10.5

Your problem
My problem is: I follow this guide to install mautic.

I also installed the SSL
These errors are showing in the log:
No Errors

Steps I have tried to fix the problem:


I found the computer just always shows the Apache2 Ubuntu Default Page . One mobile can open and I set up on phone but no SSL. The other mobile same with Computer.

How to fix this weird issue?
I have cleared the Chrome cache.

Did you install SSL? (it is not in the guide)

Yes, I have installed it. Your guide has shown

Wow, know your own guide, right? :slight_smile:
Can you private message me the domain, I’d like to take a look and try to help you!
Joey

Virtual server needed a line.

I have two instances.
date.timezone = “Europe/Zurich”.
When I remove the Double Quotes like date.timezone = Europe/Zurich , my broadcast time can be correct.

Also Re the cron Job, I use the SMTP protocol to send.
It needs the mautic:email:fetch. Otherwsise the “Contact Replied” cannot work.
I don’t know where to put it. But I put it two places like below
#!/bin/bash

MAUTICCONSOLE="/var/www/html/mautic/bin/console"

if [ -z “$(ls -A /var/www/html/mautic/var/spool)” ]; then

php $MAUTICCONSOLE mautic:broadcasts:send --limit=50
php $MAUTICCONSOLE mautic:campaigns:rebuild --batch-limit=300
php $MAUTICCONSOLE mautic:segment:update --batch-limit=900
php $MAUTICCONSOLE mautic:campaigns:trigger
php $MAUTICCONSOLE mautic:import --limit=500
php $MAUTICCONSOLE mautic:webhooks:process
php $MAUTICCONSOLE mautic:reports:scheduler
    php $MAUTICCONSOLE mautic:email:fetch
php $MAUTICCONSOLE mautic:maintenance:cleanup –days-old=365

else
php $MAUTICCONSOLE mautic:broadcasts:send --limit=200
php $MAUTICCONSOLE mautic:emails:send --message-limit=200
php $MAUTICCONSOLE mautic:email:fetch
fi