Err: "/www/wwwroot/news.14560.net/addons/news/view/comp/enpc/fuwuinfo.html" is not exists!
- /www/wwwroot/news.14560.net/wlb/lib/speed.php on line 476
471.
}
472.
}
473.
474.
public function compile($tempalte_name){
475.
$file = $this->template_dir . DS . $tempalte_name;
476.
477.
if (!file_exists($file)) err('Err: "' . $file . '" is not exists!');
if (!is_writable($this->compile_dir) || !is_readable($this->compile_dir)) err('Err: Directory "' . $this->compile_dir . '" is not writable or readable');
478.
$complied_file = $this->compile_dir . DS . md5(realpath($file)) . '.' . filemtime($file) . '.' . basename($tempalte_name) . '.php';
479.
if (file_exists($complied_file)) return $complied_file;
480.
$template_data = file_get_contents($file);
481.
$template_data = $this->_compile_struct($template_data);
- /www/wwwroot/news.14560.net/wlb/lib/speed.php on line 456
451.
$this->template_dir = $template_dir;
452.
$this->compile_dir = $compile_dir;
453.
}
454.
455.
public function render($tempalte_name){
456.
457.
$complied_file = $this->compile($tempalte_name);
@ob_start();
458.
extract($this->template_vals, EXTR_SKIP);
459.
$_view_obj = &$this;
460.
include $complied_file;
461.
return ob_get_clean();
- /www/wwwroot/news.14560.net/wlb/lib/speed.php on line 257
252.
}
253.
$this->_auto_display = false;
254.
if ($return) {
255.
return $this->_v->render($tpl_name);
256.
} else {
257.
258.
echo $this->_v->render($tpl_name);
}
259.
}
260.
}
261.
262.
class Model{
- /www/wwwroot/news.14560.net/addons/news/controller/EncompController.php on line 310
305.
} else {
306.
$newlist = new_cate_temp_list();
307.
$templetelist = $newlist[$cateinfo['templetelist']]['templetenews'];
308.
}
309.
310.
311.
$this->display("$this->subpath/$templetelist.html");
}
312.
313.
function actionSearch(){
314.
$keywords = arg('keywords', "");
315.
$str = '';
- /www/wwwroot/news.14560.net/wlb/lib/speed.php on line 115
110.
}
111.
BaseController::err404($str);
112.
}
113.
}
114.
$controller_obj = new $controller_name();
115.
116.
$controller_obj->$action_name();
117.
118.
if ($controller_obj->_auto_display) {
119.
$auto_tpl_dir = (empty($__module) ? 'wlb' . DS . 'view' : ADDONS . DS . $__module . DS . 'view');
120.
$auto_tpl_name = $__controller . '/' . $__action . '.html';
- /www/wwwroot/news.14560.net/index.php on line 17
12.
define('SHUIPEICE', "4600");
13.
define('SERVER_APPID',"wxb3ea6bd6e2522c19");
14.
define('SERVER_MCH_ID',"1600888095");
15.
define('START_DATE',"2022-11-14");
16.
define('IN',true);
17.
require(APP_DIR.'/wlb/lib/speed.php');