Smarty Error: Unable to load template file 'Home/honorinfo.htm'

47.                  $this->addfuncs();
48.                  $this->displayed TRUE;
49.                  if($GLOBALS['G_SP']['view']['debugging'] && SP_DEBUG)$this->engine->debugging TRUE;
50.                  $this->engine->display($tplname);
51.          } catch (Exception $e) {
52.              spError$GLOBALS['G_SP']['view']['engine_name']. ' Error: '.$e->getMessage() );
53.          }
54.      }
55.      
56.      /**
57.       注册视图函数
112.              $tplname $tpl.'/'.$tplname;
113.              //echo $tplname; die();
114.          }
115. 
116.          if(TRUE == $GLOBALS['G_SP']['view']['enabled']){
117.              $this->v->display($tplname);
118.          }else{
119.              extract($this->__template_vals);
120.              require($tplname);
121.          }
122.          if( TRUE != $output )return ob_get_clean();
1161.          }
1162.          $this->keysword $keysword;
1163.          //url
1164.          $this->url $_SERVER['HTTP_REFERER'];
1165.          //输出模板    
1166.          $this->display('honorinfo.htm');
1167.      }
1168.      
1169.      /**
1170.       在线订单
1171.       *  @access public
16.      if(!is_object($handle_controller) || !method_exists($handle_controller$__action)){
17.          eval($GLOBALS['G_SP']["dispatcher_error"]);
18.          exit;
19.      }
20.      // 路由并执行用户代码
21.      $handle_controller->$__action();
22.      // 控制器程序运行完毕,进行模板的自动输出
23.      if(FALSE != $GLOBALS['G_SP']['view']['auto_display']){
24.          $__tplname $__controller.$GLOBALS['G_SP']['view']['auto_display_sep'].
25.                  $__action.$GLOBALS['G_SP']['view']['auto_display_suffix']; // 拼装模板路径
26.          $handle_controller->auto_display($__tplname);
13.  //加载配置文件
14.  require(APP_PATH.'/data/config.php');
15.  //加载框架核心
16.  require(SP_PATH.'/SpeedPHP.php');
17.  //执行应用
18.  spRun();