Exception: FLEA_Exception_MissingController
Message: Controller "gywm" is missing.
Filename: /www/wwwroot/www.malabanjm.com/LIBS/FLEA/FLEA/Dispatcher/Simple.php [153]
#3 FLEA_Dispatcher_Simple::_executeAction('gywm', 'detail', 'Controller_gywm')
ARGS:
Array
(
[0] => gywm
[1] => detail
[2] => Controller_gywm
)
SOURCE CODE:
143 |
__THROW(new FLEA_Exception_MissingAction(
|
144 |
$controllerName, $actionName, $this->_requestBackup,
|
145 |
$controllerClass, $actionMethod, $controllerClassFilename));
|
146 |
return false;
|
147 |
}
|
148 |
|
149 |
/**
|
150 |
* 从请求中取得 Controller 名字
|
151 |
*
|
152 |
* 如果没有指定 Controller 名字,则返回配置文件中定义的默认 Controller 名字。
|
153 |
*
|
154 |
* @return string
|
155 |
*/
|
156 |
function getControllerName()
|
157 |
{
|
158 |
$controllerName = preg_replace('/[^a-z0-9_]+/i', '', $this->_request['controller']);
|
159 |
if ($controllerName == '') {
|
160 |
$controllerName = FLEA::getAppInf('defaultController');
|
161 |
}
|
162 |
if (FLEA::getAppInf('urlLowerChar')) {
|
163 |
$controllerName = strtolower($controllerName);
|
Filename: /www/wwwroot/www.malabanjm.com/LIBS/FLEA/FLEA.php [1631]
#2 FLEA_Dispatcher_Simple::dispatching()
ARGS:
Array
(
)
SOURCE CODE:
1621 |
}
|
1622 |
$GLOBALS[G_FLEA_VAR]['FLEA_EXCEPTION_HANDLER'] = $callback;
|
1623 |
return $current;
|
1624 |
}
|
1625 |
|
1626 |
/**
|
1627 |
* FleaPHP 默认的异常处理例程
|
1628 |
*
|
1629 |
* @package Core
|
1630 |
*
|
1631 |
* @param FLEA_Exception $ex
|
1632 |
*/
|
1633 |
function __FLEA_EXCEPTION_HANDLER($ex)
|
1634 |
{
|
1635 |
if (!FLEA::getAppInf('displayErrors')) { exit; }
|
1636 |
if (FLEA::getAppInf('friendlyErrorsMessage')) {
|
1637 |
$language = FLEA::getAppInf('defaultLanguage');
|
1638 |
$language = preg_replace('/[^a-z0-9\-_]+/i', '', $language);
|
1639 |
|
1640 |
$exclass = strtoupper(get_class($ex));
|
1641 |
$template = FLEA_DIR . "/_Errors/{$language}/{$exclass}.php";
|
Filename: /www/wwwroot/www.malabanjm.com/index.php [117]
#1 FLEA::runMVC()
ARGS:
Array
(
)
SOURCE CODE: