Err: Module 'yxfh' is not exists!
- /Work/project/backend/park/sub/app/lib/speed.phphtml on line 492
487.
}
488.
}
489.
function _err_router($msg){
490.
Global $__module, $__controller, $__action;
491.
if(!method_exists('BaseController', 'err404')){
492.
493.
err($msg);
}else{
494.
BaseController::err404($__module, $__controller, $__action, $msg);
495.
}
496.
}
497.
function _err_handle($errno, $errstr, $errfile, $errline){
- /Work/project/backend/park/sub/app/lib/speed.phphtml on line 73
68.
$controller_name = $__controller.'Controller';
69.
$action_name = 'action'.$__action;
70.
71.
if(!empty($__module)){
72.
if(!is_available_classname($__module))_err_router("Err: Module '$__module' is not correct!");
73.
74.
if(!is_dir(APP_CORE.DS.'controller'.DS.$__module))_err_router("Err: Module '$__module' is not exists!");
}
75.
if(!is_available_classname($__controller))_err_router("Err: Controller '$controller_name' is not correct!");
76.
if(!class_exists($controller_name, true))_err_router("Err: Controller '$controller_name' is not exists!");
77.
if(!method_exists($controller_name, $action_name))_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
78.
- /Work/project/backend/park/sub/index.phphtml on line 14
9.
10.
require_once INC_PATH . '/functions.phphtml';
11.
require_once INCS_PATH . '/function.phphtml';
12.
require_once INCS_PATH . '/ApiJava.phphtml';
13.
14.
require_once APP_CORE . '/lib/speed.phphtml';