route Error

10.      load_lang_class();
11.      syClass('sysession');
12.      spLaunch("router_prefilter");
13.      $handle_controller syClass($__controllernull$GLOBALS['G_DY']["controller_path"].'/'.$__controller.".php");
14.      if(!is_object($handle_controller) || !method_exists($handle_controller$__action)){
15.          syError('route Error');
16.          exit;
17.      }
18.      $handle_controller->$__action();
19.      if(FALSE != $GLOBALS['G_DY']['view']['auto_display']){
20.          $__tplname $__controller.$GLOBALS['G_DY']['view']['auto_display_sep'].
2.  require("config.php");
3.  $doyoConfig['view']['config']['template_dir'] = APP_PATH.'/template/mobile';
4.  $doyoConfig['controller_path'] = APP_PATH.'/source/mobile';
5. 
6.  require(DOYO_PATH."/sys.php");
7.  spRun();