请求的控制器 show 没有定义

详细错误原因:

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

调用参数 :
Array
(
    [c] => show
    [id] => 1886
)

解决:

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

controller/show.php

[Copy To Clipboard]


<?php

// controller/show.php

class controller_show extends FLEA_Controller_Action
{

    function actionindex()
    {

    }
}


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


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

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()