Err: Module '10722.pdf' is not exists!

57.  $__module     = isset($_REQUEST['m']) ? strtolower($_REQUEST['m']) : '';
58.  $__controller = isset($_REQUEST['c']) ? strtolower($_REQUEST['c']) : 'main';
59.  $__action     = isset($_REQUEST['a']) ? strtolower($_REQUEST['a']) : 'index';
60.  if(!empty($__module)){
61.      if(!is_available_classname($__module))err("Err: Module name '$__module' is not correct!");
62.      if(!is_dir(APP_DIR.DS.ADDONS.DS.$__module.DS.'controller'))err("Err: Module '$__module' is not exists!");
63.  }
64.  if(!is_available_classname($__controller))err("Err: Controller name '$__controller' is not correct!");
65.  spl_autoload_register('inner_autoload');
66.  function inner_autoload($class){
67.      GLOBAL $__module;
4.  define('APP_DIR'realpath('./')); 
5.  define ('SITE_DOMAIN'strip_tags $_SERVER ['HTTP_HOST'] ) );
6.  define ('SITE_PATH'dirname __FILE__ ) );  
7.  define('SYSNAME'"后台管理系统");  
8.  define('IN',true);     
9.  require(APP_DIR.'/wlb/lib/speed.php');