Err: Module 'i' is not exists!

571.      }
572.  }
573.  function _err_router($msg){
574.      Global $__module$__controller$__action;
575.      if(!method_exists('BaseController''err404')){
576.          err($msg);
577.      }else{
578.          BaseController::err404($__module$__controller$__action$msg);
579.      }
580.  }
581.  function _err_handle($errno$errstr$errfile$errline){
75.  $controller_name $__controller.'Controller';
76.  $action_name 'action'.$__action;
77. 
78.  if(!empty($__module)){
79.      if(!is_available_classname($__module))_err_router("Err: Module '$__module' is not correct!");
80.      if(!is_dir(APP_DIR.DS.'protected'.DS.'controller'.DS.$__module))_err_router("Err: Module '$__module' is not exists!");
81.  }
82.  if(!is_available_classname($__controller))_err_router("Err: Controller '$controller_name' is not correct!");
83.  if(!class_exists($controller_nametrue))_err_router("Err: Controller '$controller_name' is not exists!");
84.  if(!method_exists($controller_name$action_name))_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
85. 
2.  ini_set("session.cookie_domain","p.renbenzhihui.com");
3.  //error_reporting(E_ALL);
4.  //ini_set('display_errors', '1');
5.  define('APP_DIR'realpath('./'));
6.  define("APP_PATH",dirname(__FILE__));
7.  require(APP_DIR.'/protected/lib/speed.php');