php - ./yiic rresque start什么都不做

时间:2014-03-06 08:12:47

标签: php yii resque yiic php-resque

我安装了此扩展程序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文件夹。

2 个答案:

答案 0 :(得分:1)

RResqueCommand.php 置于protected / commands

根据yii docs

  

控制台命令作为类文件存储在CConsoleApplication::commandPath指定的目录下。

默认情况下,这是指目录protected/commands

答案 1 :(得分:0)

将它放入config / console.php:

'import' => array(
    'application.models.*',
    'application.components.*',
),