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')
ARGS:
Array
(
[0] => products
[1] => new
[2] => Controller_products
)
SOURCE CODE:
94 |
* @return mixed
|
95 |
*/
|
96 |
|
97 |
|
98 |
function dispatching()
|
99 |
{
|
100 |
$controllerName = $this->getControllerName();
|
101 |
$actionName = $this->getActionName();
|
102 |
|
103 |
|
104 |
return $this->_executeAction($controllerName, $actionName, $this->getControllerClass($controllerName));
|
105 |
|
106 |
|
107 |
|
108 |
|
109 |
}
|
110 |
|
111 |
/**
|
112 |
* 执行指定的 Action 方法
|
113 |
*
|
114 |
* @param string $controllerName
|
Filename: 半岛体育官网:/data/nationalcitytrees.com/FLEA/FLEA.php [818]
#2 FLEA_Dispatcher_Simple::dispatching()
ARGS:
Array
(
)
SOURCE CODE:
808 |
require_once($MVCPackageFilename);
|
809 |
}
|
810 |
FLEA::init();
|
811 |
|
812 |
// 载入调度器并转发请求到控制器
|
813 |
$dispatcherClass = FLEA::getAppInf('dispatcher');
|
814 |
FLEA::loadClass($dispatcherClass);
|
815 |
|
816 |
$dispatcher = new $dispatcherClass($_GET);
|
817 |
FLEA::register($dispatcher, $dispatcherClass);
|
818 |
$dispatcher->dispatching();
|
819 |
}
|
820 |
|
821 |
/**
|
822 |
* 准备运行环境
|
823 |
*
|
824 |
* @param boolean $loadMVC
|
825 |
*/
|
826 |
function init($loadMVC = false)
|
827 |
{
|
828 |
static $firstTime = true;
|
Filename: 半岛体育官网:/data/nationalcitytrees.com/index.php [15]
#1 FLEA::runMVC()
ARGS:
Array
(
)
SOURCE CODE:
5 |
if(is_file($_SERVER['DOCUMENT_ROOT'].'360webscan.php')){
|
6 |
require_once($_SERVER['DOCUMENT_ROOT'].'360webscan.php');
|
7 |
}
|
8 |
|
9 |
define('NO_LEGACY_FLEAPHP', true);
|
10 |
require('FLEA/FLEA.php');
|
11 |
|
12 |
FLEA::import(dirname(__FILE__) . '/APP');
|
13 |
FLEA::loadAppInf($configFilename);
|
14 |
|
15 |
FLEA::runMVC();
|
16 |
|
17 |
|
18 |
?>
|