Did you change the path to your project path? /path-to-your-project
More info on Task scheduling can be found here:
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I am running a laravel project on shared cpanel and I have some automation work. So I am using a artisan command Schedule:wor command via terminal but this is painful after every 8-10 hours I need to run this command again and again. if I don't re-run this command via my cpanel terminal it stops working. How can I get rid of this by running it every time?
I did try also cron job and used this command to run * * * * * cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1
but didn't seems working.
Please or to participate in this conversation.