请求的控制器 images 没有定义

详细错误原因:

您请求访问控制器 images 的动作 stylecss
但控制器 images 对应的类 Controller_images 没有定义。

调用参数 :
Array
(
    [controller] => images
    [action] => style.css
)

解决:

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

Controller/images.php

[Copy To Clipboard]


<?php

// Controller/images.php

class Controller_images extends FLEA_Controller_Action
{

    function actionstylecss()
    {

    }
}


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


Filename: /var/www/vhosts/acty-b.com/subdomains/staff/httpdocs/FLEA/FLEA/Dispatcher/Simple.php [77]
#3 FLEA_Dispatcher_Simple::_executeAction('images', 'stylecss', 'Controller_images')

Filename: /var/www/vhosts/acty-b.com/subdomains/staff/httpdocs/FLEA/FLEA.php [816]
#2 FLEA_Dispatcher_Simple::dispatching()

Filename: /var/www/vhosts/acty-b.com/subdomains/staff/httpdocs/index.php [11]
#1 FLEA::runMVC()