Err: Module 'detail' is not exists!

1082.      }
1083.  }
1084.  function _err_router($msg){
1085.      Global $__module$__controller$__action;
1086.      if(!method_exists('BaseController''err404')){
1087.          err($msg);
1088.      }else{
1089.          BaseController::err404($__module$__controller$__action$msg);
1090.      }
1091.  }
1092.  function _err_handle($errno$errstr$errfile$errline){
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.      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.  if(!class_exists($controller_nametrue))_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!");
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.  require(APP_DIR.'/protected/lib/speed.php');
12.  ?>