Err: Module 'instruction' is not exists!

465.      }
466.  }
467.  function _err_router($msg){
468.      Global $__module$__controller$__action;
469.      if(!method_exists('BaseController''err404')){
470.          err($msg);
471.      }else{
472.          BaseController::err404($__module$__controller$__action$msg);
473.      }
474.  }
475.  function _err_handle($errno$errstr$errfile$errline){
65.  }
66.  $controller_name $__controller.'Controller';
67.  $action_name 'action'.$__action;
68.  if(!empty($__module)){
69.      if(!is_available_classname($__module))_err_router("Err: Module '$__module' is not correct!");
70.      if(!is_dir(APP_DIR.DS.'protected'.DS.'controller'.DS.$__module))_err_router("Err: Module '$__module' is not exists!");
71.  }
72.  if(!is_available_classname($__controller))_err_router("Err: Controller '$controller_name' is not correct!");
73.  if(!class_exists($controller_nametrue))_err_router("Err: Controller '$controller_name' is not exists!");
74.  if(!method_exists($controller_name$action_name))_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
75.  $controller_obj = new $controller_name();
1.  <?php
2.  include("301.inc.php");
3.  session_start();
4.  define('APP_DIR'realpath('./'));
5.  require(APP_DIR.'/protected/lib/speed.php');