Troubleshooting Laravel Cron Job Execution Error on Hostinger

I am working on a Laravel application and have set up a cron job on Hostinger to handle tasks. However, I’m encountering an execution error. My current cron job setup is as follows:

* * * * * /usr/bin/php /home/u543050802/public_html/crm/artisan schedule:run

When this cron job runs, I receive the following error in the logs:

2023-12-29 19:02:02 Running ['artisan' reminders:check] ......... 268ms FAIL â '/opt/alt/php82/usr/bin/php' 'artisan' reminders:check > '/dev/null' 2>&1

enter image description here

enter image description here

enter image description here

enter image description here

Based on this, I have a few questions:

  • What might be causing the failure of the artisan command when
    executed through the cron job on Hostinger?
  • Is the issue related to the way I have set up the cron job, or could
    it be an issue with the Laravel configuration or script path?
  • Has anyone experienced a similar issue and found a solution or
    workaround, specifically in the context of Hostinger’s hosting
    environment?

Any advice or suggestions on how to resolve this error would be greatly appreciated. Thank you for your help!

  • Did you manually test the command artisan reminders:check on your server? This helps to decide if the issue related to crontab or your application.

    – 

Leave a Comment