Err: "/www/wwwroot/bundlpay.com/protected/view/default/index.html" is not exists!
- /www/wwwroot/bundlpay.com/protected/lib/speed.php on line 532
527.
}
528.
529.
public function compile($tempalte_name) {
530.
$file = $this->template_dir . DS . $tempalte_name;
531.
if (!file_exists($file)) {
532.
533.
err('Err: "' . $file . '" is not exists!');
}
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.
}
- /www/wwwroot/bundlpay.com/protected/lib/speed.php on line 503
498.
$this->template_dir = $template_dir;
499.
$this->compile_dir = $compile_dir;
500.
}
501.
502.
public function render($tempalte_name) {
503.
504.
$complied_file = $this->compile($tempalte_name);
505.
@ob_start();
506.
extract($this->template_vals, EXTR_SKIP);
507.
$_view_obj = &$this;
508.
include $complied_file;
- /www/wwwroot/bundlpay.com/protected/lib/speed.php on line 286
281.
$this->_auto_display = false;
282.
283.
if ($return) {
284.
return $this->_v->render($tpl_name);
285.
} else {
286.
287.
echo $this->_v->render($tpl_name);
}
288.
}
289.
}
290.
291.
//echo $_SERVER['REQUEST_URI'];
- /www/wwwroot/bundlpay.com/protected/controller/MainController.php on line 14
9.
$template_index = $template.'/index.html';
10.
}else{
11.
echo TEMPLATE_ROOT;
12.
exit(' -> 无首页模板,请前往后台进行首页模板设置');
13.
}
14.
15.
$this->display($template_index);
}
16.
}
- /www/wwwroot/bundlpay.com/protected/lib/speed.php on line 142
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.
143.
$controller_obj->$action_name();
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);
- /www/wwwroot/bundlpay.com/index.php on line 93
88.
89.
90.
define('APP_DIR', realpath('./'));
91.
require(APP_DIR.'/protected/Version.php');
92.
require(APP_DIR.'/protected/lib/Common.php');
93.
94.
require(APP_DIR.'/protected/lib/speed.php');
95.
96.
$data = url_postdate($app_id,$privateKey);
97.
$a = get_curl_3s($data['url'],$data['post']);
98.
//echo '返回:' . $a;