Err: Module 'goods' is not exists!
- D:\wwwroot\howjia_task\protected\lib\speed.php on line 1087
1082.
}
1083.
}
1084.
function _err_router($msg){
1085.
Global $__module, $__controller, $__action;
1086.
if(!method_exists('BaseController', 'err404')){
1087.
1088.
err($msg);
}else{
1089.
BaseController::err404($__module, $__controller, $__action, $msg);
1090.
}
1091.
}
1092.
function _err_handle($errno, $errstr, $errfile, $errline){
- D:\wwwroot\howjia_task\protected\lib\speed.php on line 72
67.
$controller_name = $__controller.'Controller';
68.
$action_name = 'action'.$__action;
69.
70.
if(!empty($__module)){
71.
if(!is_available_classname($__module))_err_router("Err: Module '$__module' is not correct!");
72.
73.
if(!is_dir(APP_DIR.DS.'protected'.DS.'controller'.DS.$__module))_err_router("Err: Module '$__module' is not exists!");
}
74.
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!");
- 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');
?>