Err: "/www/wwwroot/dns.hn100001.com/protected/view/aurora/index.html" is not exists!

990.              if ($resolved !== $file && file_exists($resolved)) {
991.                  $file $resolved;
992.              }
993.          }
994.          if (!file_exists($file)) {
995.              err('Err: "' $file '" is not exists!');
996.          }
997. 
998.          if (!is_writable($this->compile_dir) || !is_readable($this->compile_dir)) {
999.              err('Err: Directory "' $this->compile_dir '" is not writable or readable');
1000.          }
945.       
946.       * @param string $tempalte_name 模板名
947.       * @return string
948.       */
949.      public function render($tempalte_name) {
950.          $complied_file $this->compile($tempalte_name);
951. 
952.          @ob_start();
953.          extract($this->template_valsEXTR_SKIP);
954.          $_view_obj = &$this;
955.          include $complied_file;
473.          $this->_auto_display false;
474. 
475.          if ($return) {
476.              return $this->_v->render($tpl_name);
477.          } else {
478.              echo $this->_v->render($tpl_name);
479.          }
480.      }
481. 
482.      public function pluginView($code$tpl_name$return false) {
483.          $pluginViewDir APP_DIR DS 'protected' DS 'lib' DS 'Plugin' DS $code DS 'view';
66.          if (!file_exists($templateFile)) {
67.              exit($templateFile.' -> 无首页模板,请前往后台进行首页模板设置');
68.          }
69.          
70.          $this->assets '/Template/Index/' $template '/assets/';
71.          $this->display($template '/index.html');
72.      }
73.  }
262. 
263.  // 执行控制器
264.  $controller_obj = new $controller_name();
265. 
266.  try {
267.      $controller_obj->$action_name();
268.  } catch (\Throwable $e) {
269.      if (isset($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) === 'xmlhttprequest') {
270.          header('Content-Type: application/json');
271.          echo json_encode(array('code' => -1'msg' => '系统异常: ' $e->getMessage() . ' 在 ' basename($e->getFile()) . ':' $e->getLine()), JSON_UNESCAPED_UNICODE);
272.      } else {
104.  }
105. 
106.  define('APP_DIR'realpath('./'));
107.  require(APP_DIR.'/protected/Version.php');
108.  require(APP_DIR.'/protected/lib/Common.php');
109.  require(APP_DIR.'/protected/lib/Speed.php');
110.  ?>