12

I am trying to develop a cron job for a command I have already created. I am completely new to cron jobs so I dont really know how it works.

Trying the command by myself in the console works perfectly. All I need is to be able to execute it every 24 hours. I am using Laravel 4, can anyone help?

Thanks!

Antonio Carlos Ribeiro
  • 86,191
  • 22
  • 213
  • 204
Oliver Hoffman
  • 540
  • 1
  • 9
  • 22

3 Answers3

26

To create a cron job as root, edit your cron file:

[sudo] crontab -e

Add a new line at the end, every line is a cron job:

25 10 * * * php /var/www/<siteName>/artisan <command:name> <parameters>

This will execute the same command at 10:25AM everyday.

Just make sure you keep a blank line after the last one. And you also might need to use the full path of your php client:

25 10 * * * /usr/local/bin/php /var/www/<siteName>/artisan <command:name> <parameters>
Antonio Carlos Ribeiro
  • 86,191
  • 22
  • 213
  • 204
3

You could register your cron job like this:

php /path/to/your/laravel/project/artisan your-custom-command
Luis Dalmolin
  • 3,416
  • 1
  • 18
  • 24
1

See my answer on this question, my example is for L3 but should work for Laravel 4 accordingly.

Community
  • 1
  • 1
aebersold
  • 11,286
  • 2
  • 20
  • 29