2)打開文件\includes\lib_base.php 按如下說(shuō)明修改代碼:
function write_static_cache($cache_name,$caches,$newname,$newfile)
{
if (!empty($cache_name)){
if ((DEBUG_MODE& 2) == 2)
{
return false;
}
$cache_file_path = ROOT_PATH . '/temp/static_caches/' . $cache_name . '.php';
$content = '<>
$content .= '\$data = ' . var_export($caches, true) . ';\r\n';
$content .= '?>';
file_put_contents($cache_file_path, $content, LOCK_EX);
}else{
@file_put_contents($newfile, $newname);
}
}
修改為:
function write_static_cache($cache_name, $caches)
{
if ((DEBUG_MODE& 2) == 2)
{
return false;
}
$cache_file_path = ROOT_PATH . '/temp/static_caches/' . $cache_name . '.php';
$content = '<>
$content .= '\$data = ' . var_export($caches, true) . ';\r\n';
$content .= '?>';
file_put_contents($cache_file_path, $content, LOCK_EX);
}
本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)
點(diǎn)擊舉報(bào)。