php - Cron Job in Laravel -


this question has answer here:

i trying develop cron job command have created. new cron jobs dont know how works.

trying command myself in console works perfectly. need able execute every 24 hours. using laravel 4, can help?

thanks!

to create cron job root, edit cron file:

[sudo] crontab -e 

add new line @ end, every line cron job:

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

this execute same command @ 10:25am everyday.

just make sure keep blank line after last one. , might need use full path of php client:

25 10 * * * /usr/local/bin/php /var/www/<sitename>/artisan <command:name> <parameters> 

Comments

Popular posts from this blog

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -