1

我安装了这个扩展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 文件夹。

4

2 回答 2

1

RResqueCommand.php放入 protected/commands

根据yii 文档

控制台命令以类文件的形式存储在CConsoleApplication::commandPath.

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

于 2016-04-12T12:33:48.933 回答
0

把它放到你的 config/console.php 中:

'import' => array(
    'application.models.*',
    'application.components.*',
),
于 2014-03-06T08:17:17.580 回答