2014-03-06 47 views
1

我安裝這個擴展http://www.yiiframework.com/extension/yii-resque/PHP - ./yiic rresque開始什麼都不做

[email protected]:/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文件夾中。

回答

1

RResqueCommand.php內保護/命令

根據yii docs

控制檯命令被存儲爲在CConsoleApplication::commandPath指定的目錄下的類文件。

默認情況下,這指的是目錄protected/commands

+0

您可能需要查看http://stackoverflow.com/help/how-to-answer – Kruser

+0

添加一些代碼而不是鏈接。 –

0

將這個變成你的config/console.php:

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

謝謝你的回答。但它並沒有解決問題。 – arfname