This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* @copyright 2014 Mautic Contributors. All rights reserved | |
* @author Mautic | |
* | |
* @link http://mautic.org | |
* | |
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Remove unused ips | |
php app/console mautic:unusedip:delete -n --limit=99999999999 | |
# Maintenance cleanup | |
php app/console mautic:maintenance:cleanup --days-old=21 -n | |
Mysql: | |
#infos: https://github.com/mautic/mautic/issues/7763 | |
UPDATE email_stats SET tokens = NULL; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
(function (global) { | |
var formId = 11; | |
var elementorPopupId = 6513; | |
var mauticFormBaseUrl = 'mautic.example.de'; | |
function initFileUpload() { | |
var fileButton = '.mauticform_wrapper button#file_select'; | |
var fileSelector = '.mauticform_wrapper input[type=\'file\']'; |