2

我创建了一个 php yiic 命令为

class StartCommand extends CConsoleCommand {

  public function run($params){
    Yii::log("Cron Job has started");        
  }
}

当我运行命令php yiic Start时,我会在日志中得到结果。

我已将此添加到 crontab

 * * * * * /usr/bin/php  /path/app/console/commands/StartCommand.php

但是作业没有运行。我想我不得不提到 crontab 的 php yiic Start。

但是我在哪里添加它?

4

1 回答 1

6
* * * * * cd /path/app/console/commands && php yiic Start
于 2014-03-07T06:26:13.683 回答