我安装了此扩展程序http://www.yiiframework.com/extension/yii-resque/
user@host:/path/to/protected$ ./yiic rresque start
Yii command runner (based on Yii v1.1.13)
Usage: ./yiic <command-name> [parameters...]
The following commands are available:
- message
- migrate
- shell
- webapp
To see individual command help, use the following:
./yiic help <command-name>
可能出错了什么?
修改
我发现了问题:我没有将RResqueCommand.php放入./protected/commands文件夹。
答案 0 :(得分:1)
将 RResqueCommand.php 置于protected / commands
中根据yii docs:
控制台命令作为类文件存储在
CConsoleApplication::commandPath
指定的目录下。
默认情况下,这是指目录protected/commands
。
答案 1 :(得分:0)
将它放入config / console.php:
'import' => array(
'application.models.*',
'application.components.*',
),