我创建了一个 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。
但是我在哪里添加它?