Err: "/www/website/e.heiyu.cc/protected/view/gogo/index.html" is not exists!

536.      }
537. 
538.      public function compile($tempalte_name) {
539.          $file $this->template_dir DS $tempalte_name;
540.          if (!file_exists($file)) {
541.              err('Err: "' $file '" is not exists!');
542.          }
543. 
544.          if (!is_writable($this->compile_dir) || !is_readable($this->compile_dir)) {
545.              err('Err: Directory "' $this->compile_dir '" is not writable or readable');
546.          }
507.          $this->template_dir $template_dir;
508.          $this->compile_dir $compile_dir;
509.      }
510. 
511.      public function render($tempalte_name) {
512.          $complied_file $this->compile($tempalte_name);
513. 
514.          @ob_start();
515.          extract($this->template_valsEXTR_SKIP);
516.          $_view_obj = &$this;
517.          include $complied_file;
290.          $this->_auto_display false;
291. 
292.          if ($return) {
293.              return $this->_v->render($tpl_name);
294.          } else {
295.              echo $this->_v->render($tpl_name);
296.          }
297.      }
298.  }
299. 
300.  //echo $_SERVER['REQUEST_URI'];
9.              $template_index $template.'/index.html';
10.          }else{
11.              echo TEMPLATE_ROOT;
12.              exit(' -> 无首页模板,请前往后台进行首页模板设置');
13.          }
14.          $this->display($template_index);
15.      }
16.  }
146.  if (!method_exists($controller_name$action_name)) {
147.      _err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
148.  }
149. 
150.  $controller_obj = new $controller_name();
151.  $controller_obj->$action_name();
152. 
153.  if ($controller_obj->_auto_display) {
154.      $auto_tpl_name = (empty($__module) ? '' $__module DS) . $__controller '_' $__action '.html';
155.      if (file_exists(APP_DIR DS 'protected' DS 'view' DS $auto_tpl_name)) {
156.          $controller_obj->display($auto_tpl_name);
36.  }
37. 
38.  define('APP_DIR'realpath('./'));
39.  require(APP_DIR.'/protected/Version.php');
40.  require(APP_DIR.'/protected/lib/Common.php');
41.  require(APP_DIR.'/protected/lib/speed.php');
42. 
43.  if($_GET['runcron']){
44.      //云端防止监控自动停止
45.      $ch curl_init();curl_setopt($chCURLOPT_URL, ((int)$_SERVER['SERVER_PORT'] == 80 'http://'.$_SERVER['HTTP_HOST'] : 'https://'.$_SERVER['HTTP_HOST']).'/Crontab/Tim/Run?r='.time());curl_setopt($chCURLOPT_SSL_VERIFYPEERfalse);curl_setopt($chCURLOPT_SSL_VERIFYHOSTfalse);curl_setopt($chCURLOPT_RETURNTRANSFER1);curl_setopt($chCURLOPT_FOLLOWLOCATION1);curl_setopt($chCURLOPT_TIMEOUT1);curl_exec($ch);curl_close($ch);
46.      exit('站点正常哦');