请求的控制器 article 没有定义

详细错误原因:

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

调用参数 :
Array
(
    [column] => article
    [do] => index
    [col_key] => news
    [lang] => us-en
)

解决:

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

Controller\Article.php

[Copy To Clipboard]


<?php

// Controller\Article.php

class Controller_Article extends FLEA_Controller_Action
{

    function actionindex()
    {

    }
}


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


Filename: E:\HostingSpaces\chinaech.com.hk\chinaech.com.hk\wwwroot\libs\FLEA\FLEA\Dispatcher\Simple.php [77]
#4 FLEA_Dispatcher_Simple::_executeAction('article', 'index', 'Controller_Article')

Filename: E:\HostingSpaces\chinaech.com.hk\chinaech.com.hk\wwwroot\libs\FLEA\FLEA.php [816]
#3 FLEA_Dispatcher_Simple::dispatching()

Filename: E:\HostingSpaces\chinaech.com.hk\chinaech.com.hk\wwwroot\apps\application.php [150]
#2 FLEA::runMVC()

Filename: E:\HostingSpaces\chinaech.com.hk\chinaech.com.hk\wwwroot\index.php [26]
#1 application::run()