怎么去掉uchome模板缓存

uchome默认的是开启缓存的,而且后台没有提供关闭的功能。需要修改代码

修改uchome下sourc/function_common.php 找到function template($name)方法。


把这个判断注释掉就是不缓存页面,修改模板即可显示,测试完成后再改过来


//if(!file_exists($objfile)) {
include_once(S_ROOT.'./source/function_template.php');
parse_template($tpl);
//}

你可能感兴趣的:(怎么去掉uchome模板缓存)