We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
docker-mautic/common/mautic.crontab
Lines 19 to 20 in 492fc1b
It should be php /var/www/html/bin/console mautic:iplookup:download
php /var/www/html/bin/console mautic:iplookup:download
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.
The text was updated successfully, but these errors were encountered:
🐛 Fix geodb download to close mautic#171
b1f3ad8
Signed-off-by: mathieu.brunot <mathieu.brunot@monogramm.io>
I solved it with the guide on the page:
https://mauteam.org/mautic/mautic-admins/solved-maxmind-geolite2-database-not-updating
And change Dockerfile to:
... RUN apt-get update && wget https://github.com/maxmind/geoipupdate/releases/download/v4.6.0/geoipupdate_4.6.0_linux_amd64.deb \ && dpkg -i geoipupdate_4.6.0_linux_amd64.deb && rm geoipupdate_4.6.0_linux_amd64.deb ... COPY GeoIP.conf /etc/GeoIP.conf ...
And change cron file:
... */5 * * * * www-data geoipupdate -f /etc/GeoIP.conf -d /var/www/html/app/cache/ip_data > /var/log/cron.pipe 2>&1 ...
Remember remove old cron:
... # 0 4 15 * * www-data php /var/www/html/bin/console mautic:iplookup:download > /var/log/cron.pipe 2>&1 ...
Sorry, something went wrong.
No branches or pull requests
docker-mautic/common/mautic.crontab
Lines 19 to 20 in 492fc1b
It should be
php /var/www/html/bin/console mautic:iplookup:download
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.
The text was updated successfully, but these errors were encountered: