我收到此错误
参数错误: uri - uri不是此任务的有效选项!
但我的命令看起来有效:
php /var/www/public_html/index.php --uri = controller / action
我也试过(直接在这个文件夹中)
php index.php --uri = controller / action
php index.php --uri =“controller / action”
总是出现此错误
问候
答案 0 :(得分:2)
Kohana 3.3改变了它处理CLI执行的方式。从3.3开始,它使用Minion模块,--uri
param被删除,而不是--task
,因此你必须创建任务(而不是控制器)。
文档中的更多信息:http://kohanaframework.org/3.3/guide/minion/tasks
请注意,文档有错误,不再有$_defaults
,而是$_options
。有关详细信息,请查看API Docs。