Smarty Error: Unable to load template file '/var/www/vhosts/jedoo.cn/httpdocs/modules/articles/tpls/network_index'

53.                  $this->addfuncs();
54.                  $this->displayed TRUE;
55.                  if($GLOBALS['G_JCONFIG']['view']['debugging'] && debugMode)$this->engine->debugging TRUE;
56.                  $this->engine->display($tplname);
57.          } catch (Exception $e) {
58.              JError$GLOBALS['G_JCONFIG']['view']['engine_name']. ' Error: '.$e->getMessage() );
59.          }
60.      }
61.      
62.      /**
63.       注册已挂靠的视图函数
149.       */
150.      public function display($tplname$output TRUE)
151.      {
152.          @ob_start();
153.          if(TRUE == $GLOBALS['G_JCONFIG']['view']['enabled']){
154.              $this->v->display($tplname);
155.          }else{
156.              extract($this->__template_vals);
157.              require($tplname);
158.          }
159.          if( TRUE != $output )return ob_get_clean();
97.                  $tplfile str_replace($GLOBALS['G_JCONFIG']['view']['template_file_suffix'], '_' $this->getLang() . $GLOBALS['G_JCONFIG']['view']['template_file_suffix'], $tplname);
98.                  if($this->v->engine->templateExists($tplfile)) {
99.                      $this->display($tplfile);
100.                  }
101.                  else if($this->v->engine->templateExists($tplname)) {
102.                      $this->display($tplname);
103.                  }                
104.              }
105.          }
106.      }    
107.      
51.          else {
52.              $__tplname $__controller.$GLOBALS['G_JCONFIG']['view']['auto_display_sep'].
53.                      $__action.$GLOBALS['G_JCONFIG']['view']['template_file_suffix']; // 拼装模板路径
54.          }
55.          if($__tplname) {
56.              $__handle_controller->auto_display($__tplname);
57.          }
58.      }
59. 
60.      // 对路由进行后续相关操作
61.      JInject("router_postfilter");
61.  if(count($server_info) > 1) {
62.      $server_domain $server_info[count($server_info)-2];
63.      define('DOMAIN'$server_domain);
64.  }
65. 
66.  JStart();
67.  ?>