Stuck Pending-sending

Martin Maro

New Member
Hi guy´s, please help becouse i probe all.
I am read all thread about this on forum and nothing help ...

Cron is 100% set ok ... i see all crons crontab -l ...

I send few email yesterday without any problems via amazon SES, today i probe send and nothing ...
I probe add mandrill account but it also did not help, i probe set "Send at" 10-30 minutes still not help

some your opinion ? cron settings in MW is default
 
Hey,

For your particular case, you had:
Code:
* * * * * /usr/bin/php -q /home/domain/web/abcde.com/public_html/app/apps/console/commands/shell/send-parallel-campaigns > /dev/null 2>&1
Which of course is wrong, don't know exactly from where you have taken that code.
Anyway, the correct is:
Code:
* * * * * /usr/bin/php -q /home/domain/web/abcde.com/public_html/app/apps/console/console.php send-campaigns >/dev/null 2>&1
And as expected, once set, sending started properly :)

Thanks.
 
Back
Top