Laravel cronjob没有在服务器上运行

时间:2014-08-25 08:45:20

标签: php laravel-4 cron

我想问一下如何使用laravel命令运行网站上cronjobs任务的自动化?

我在tutsplus教程之后创建了一个命令,并在下面的fire方法中调用我的函数:

public function fire()
{
    $feeds= new FeedsController;
    $update='update';
    $feeds->getUpdateYoutube($update);
    $feeds->getUpdateInstagram($update);
    $feeds->getUpdateTwitter($update);
    $feeds->getUpdateFacebook($update);
    $feeds->getWriteToFile();
    $this->info('Success');
}

然而,这根本不会被调用,尽管事实上我把它包含在服务器上就像这样:0 * / 2 * * * php / home / path / public_html / website artisan feeds-refresh

任何线索我做错了什么?

0 个答案:

没有答案