-1

i have a problem with cron job. the script is executed and doesn't return any errors but it doesn't proccess my queue either. What could be the reason for that?

2 Answers2

0

it looks like that you have a problem with email server, because if the script is running without problems as you said, then only problem that you have is with sending mails.Are you able to send other mails from magento system,from command line or simple php script? Without any other information I am afraid that I will not be able to help you.

Nikola
  • 460
  • 1
  • 4
  • 16
  • i can send emails with simple php script and mail() so i guest the smtp is working – user1123021 Feb 10 '16 at 15:16
  • You can try to send mail programmatically thru Magento in the end of your script that is executed by cron job.Also you can try to send dummy maili in simple script to check is there a problem with Magento sending mails.If you able to share some code maybe we will be able to check for errors or something wrong, at the moment I am just guessing. – Nikola Feb 10 '16 at 15:26
-1

Try to run cron.php in root direct manually & wait for 5 mins. This way

http://YOUR_SITE_BASE_URL/cron.php   (In browser)

If you get the emails then cron setup is the issue

else

Some other issue.

Akhil Gupta
  • 1,946
  • 1
  • 16
  • 30