34121Err: Module 'xls' is not exists!

Err: Module 'xls' is not exists!

494.      }
495.  }
496.  function _err_router($msg){
497.      Global $__module$__controller$__action;
498.      if(!method_exists('BaseController''err404')){
499.          err($msg);
500.      }else{
501.          BaseController::err404($__module$__controller$__action$msg);
502.      }
503.  }
504.  function _err_handle($errno$errstr$errfile$errline){
72.  $controller_name $__controller.'Controller';
73.  $action_name 'action'.$__action;
74. 
75.  if(!empty($__module)){
76.      if(!is_available_classname($__module))_err_router("Err: Module '$__module' is not correct!");
77.      if(!is_dir(APP_DIR.DS.'protected'.DS.'controller'.DS.$__module))_err_router("Err: Module '$__module' is not exists!");
78.  }
79.  if(!is_available_classname($__controller))_err_router("Err: Controller '$controller_name' is not correct!");
80.  if(!class_exists($controller_nametrue))_err_router("Err: Controller '$controller_name' is not exists!");
81.  if(!method_exists($controller_name$action_name))_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
82. 
1.  <?php
2.  session_start();
3.  define('APP_DIR'realpath('./'));
4.  require(APP_DIR.'/protected/lib/speed.php');