php - Cron Job in Laravel -
this question has answer here:
- cron job laravel 4 3 answers
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
Post a Comment