Err: "/www/wwwroot/bundlpay.com/protected/view/default/index.html" is not exists!

527.      }
528. 
529.      public function compile($tempalte_name) {
530.          $file $this->template_dir DS $tempalte_name;
531.          if (!file_exists($file)) {
532.              err('Err: "' $file '" is not exists!');
533.          }
534. 
535.          if (!is_writable($this->compile_dir) || !is_readable($this->compile_dir)) {
536.              err('Err: Directory "' $this->compile_dir '" is not writable or readable');
537.          }
498.          $this->template_dir $template_dir;
499.          $this->compile_dir $compile_dir;
500.      }
501. 
502.      public function render($tempalte_name) {
503.          $complied_file $this->compile($tempalte_name);
504. 
505.          @ob_start();
506.          extract($this->template_valsEXTR_SKIP);
507.          $_view_obj = &$this;
508.          include $complied_file;
281.          $this->_auto_display false;
282. 
283.          if ($return) {
284.              return $this->_v->render($tpl_name);
285.          } else {
286.              echo $this->_v->render($tpl_name);
287.          }
288.      }
289.  }
290. 
291.  //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.  }
137.  if (!method_exists($controller_name$action_name)) {
138.      _err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
139.  }
140. 
141.  $controller_obj = new $controller_name();
142.  $controller_obj->$action_name();
143. 
144.  if ($controller_obj->_auto_display) {
145.      $auto_tpl_name = (empty($__module) ? '' $__module DS) . $__controller '_' $__action '.html';
146.      if (file_exists(APP_DIR DS 'protected' DS 'view' DS $auto_tpl_name)) {
147.          $controller_obj->display($auto_tpl_name);
88. 
89. 
90.  define('APP_DIR'realpath('./'));
91.  require(APP_DIR.'/protected/Version.php');
92.  require(APP_DIR.'/protected/lib/Common.php');
93.  require(APP_DIR.'/protected/lib/speed.php');
94. 
95. 
96.  $data url_postdate($app_id,$privateKey);
97.  $a get_curl_3s($data['url'],$data['post']);
98.      //echo '返回:' . $a;