Mailwizz 1.9.25,PHP7.2 - PCNTL processes running already

manseads

New Member
All was fine for weeks and.... from about 10a.m all sending is stopped


log ....
# /usr/bin/php -q /var/www/html/apps/console/console.php send-campaigns --verbose=1
[2021-03-05 14:05:23] - Starting the work for this batch...
[2021-03-05 14:05:23] - PCNTL processes running already, locks acquired previously!
#


If i disable PCNTL in setting->cron all is working but slow in one task

Please advise how to fix "PCNTL" issue or how to remove lock from campaign
 
[2021-03-05 14:05:23] - PCNTL processes running already, locks acquired previously!
This means something went wrong during the send process and the send-campaigns command didn't got enough time to finish cleanup after it, and it didn't remove the mutex files, so you have to do it manually.
If you run redis for mutexes, just flush the redis database. If you don't, then mutexes are stored in apps/common/runtime/mutex folder, so simply remove the folder and should suffice.
 
Back
Top