请求的控制器 Front 的动作 index 没有定义

详细错误原因:

您请求访问控制器 Front 的动作 index
但该控制器的类定义文件

中没有定义动作 index 对应的方法 actionindex

调用参数 :
Array
(
    [controller] => Front
)

解决:

请检查文件

中定义的 Controller_Front 类是否编写了 actionindex 方法。
[Copy To Clipboard]


<?php

// 

class Controller_Front extends FLEA_Controller_Action
{

    function actionindex()
    {

    }
}


Exception: FLEA_Exception_MissingAction
Message: 缺少控制器方法 "Front::index()".


Filename: /var/www/vhosts/acty-b.net/httpdocs/FLEA/FLEA/Dispatcher/Simple.php [77]
#3 FLEA_Dispatcher_Simple::_executeAction('Front', 'index', 'Controller_Front')

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

Filename: /var/www/vhosts/acty-b.net/httpdocs/index.php [38]
#1 FLEA::runMVC()