Err: Controller 'mall_listController' is not exists!
- D:\wwwroot\howjia_task\protected\lib\speed.php on line 326
321.
static function err404($__module, $__controller, $__action, $msg){
322.
//echo "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
323.
//echo $__module."<br>";
324.
//echo $__controller."<br>";
325.
//echo $__action."<br>";
326.
327.
err($msg);
exit;
328.
}
329.
330.
}
331.
- D:\wwwroot\howjia_task\protected\lib\speed.php on line 1089
1084.
function _err_router($msg){
1085.
Global $__module, $__controller, $__action;
1086.
if(!method_exists('BaseController', 'err404')){
1087.
err($msg);
1088.
}else{
1089.
1090.
BaseController::err404($__module, $__controller, $__action, $msg);
}
1091.
}
1092.
function _err_handle($errno, $errstr, $errfile, $errline){
1093.
if(0 === error_reporting() || 30711 === error_reporting())return false;
1094.
$msg = "ERROR";
- D:\wwwroot\howjia_task\protected\lib\speed.php on line 76
71.
if(!is_available_classname($__module))_err_router("Err: Module '$__module' is not correct!");
72.
if(!is_dir(APP_DIR.DS.'protected'.DS.'controller'.DS.$__module))_err_router("Err: Module '$__module' is not exists!");
73.
}
74.
75.
if(!is_available_classname($__controller))_err_router("Err: Controller '$controller_name' is not correct!");
76.
77.
if(!class_exists($controller_name, true))_err_router("Err: Controller '$controller_name' is not exists!");
if(!method_exists($controller_name, $action_name))_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
78.
79.
$controller_obj = new $controller_name();
80.
$controller_obj->$action_name();
81.
- D:\wwwroot\howjia_task\index.php on line 11
6.
header("Access-Control-Request-Headers:*");
7.
header("Access-Control-Allow-Headers: Content-Type, X-Requested-With, Cache-Control,Authorization");
8.
header("Access-Control-Allow-Credentials: true");
9.
10.
define('APP_DIR', realpath('./'));
11.
12.
require(APP_DIR.'/protected/lib/speed.php');
?>