我已经创建了一个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
但这项工作没有开始。 我想我必须提到php yiic Start to the crontab。
但是我在哪里添加它?
答案 0 :(得分:6)
* * * * * cd /path/app/console/commands && php yiic Start