楼主,我在修改第五步之后,
网站就白屏了。
5. 修改 ucenter home/source/function_common.php 文件
找到
function template($name) {
global $_SC, $_SGLOBAL;
if(strexists($name,'/')) {
$tpl = $name;
} else {
$tpl = "template/$_SC[template]/$name";
}
$objfile = S_ROOT.'./data/tpl_cache/'.str_replace('/','_',$tpl).'.php';
if(!file_exists($objfile)) {
include_once(S_ROOT.'./source/function_template.php');
parse_template($tpl);
}
return $objfile;
}
替换成
function template($name, $temp1='', $temp2='') {
global $_SC, $_SGLOBAL;
if (!$temp2)
{
if(strexists($name,'/')) {
$tpl = $name;
} else {
$tpl = "template/$_SC[template]/$name";
}
}
else
{
$tpl = "$temp2/$name";
}
$objfile = S_ROOT.'./data/tpl_cache/'.str_replace('/','_',$tpl).'.php';
if(!file_exists($objfile)) {
include_once(S_ROOT.'./source/function_template.php');
parse_template($tpl);
}
return $objfile;
} |