请求的控制器 products 没有定义

详细错误原因:

您请求访问控制器 products 的动作 new
但控制器 products 对应的类 Controller_products 没有定义。

调用参数 :
Array
(
    [controller] => products
    [action] => new
    [nid] => 241
)

解决:

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

Controller/products.php

[半岛体育官网:Copy To Clipboard]


<?php

// Controller/products.php

class Controller_products extends FLEA_Controller_Action
{

    function actionnew()
    {

    }
}


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


Filename: /data/nationalcitytrees.com/FLEA/FLEA/Dispatcher/Simple.php [104]
#3 FLEA_Dispatcher_Simple::_executeAction('products', 'new', 'Controller_products')

Filename: 半岛体育官网:/data/nationalcitytrees.com/FLEA/FLEA.php [818]
#2 FLEA_Dispatcher_Simple::dispatching()

Filename: 半岛体育官网:/data/nationalcitytrees.com/index.php [15]
#1 FLEA::runMVC()