请求的控制器 Lists 没有定义

详细错误原因:

您请求访问控制器 Lists 的动作 index
但控制器 Lists 对应的类 controller_Lists 没有定义。

调用参数 :
Array
(
    [m] => home
    [c] => Lists
    [a] => index
    [tid] => 68
)

解决:

请检查是否创建了 controller_Lists 类的定义文件:

controller/Lists.php

[Copy To Clipboard]


<?php

// controller/Lists.php

class controller_Lists extends FLEA_Controller_Action
{

    function actionindex()
    {

    }
}


Exception: FLEA_Exception_MissingController
Message: 缺少控制器 "Lists".


Filename: /usr/home/hmu219298/htdocs/lib/FLEA/FLEA/Dispatcher/Simple.php [77]
#4 FLEA_Dispatcher_Simple::_executeAction('Lists', 'index', 'controller_Lists')

Filename: /usr/home/hmu219298/htdocs/lib/FLEA/FLEA.php [816]
#3 FLEA_Dispatcher_Simple::dispatching()

Filename: /usr/home/hmu219298/htdocs/lib/FLEA/FLEA/Compatibility.php [263]
#2 FLEA::runMVC()

Filename: /usr/home/hmu219298/htdocs/index.php [38]
#1 run()