后台页尾处显示运行信息
安装方法:打开 ./admin/global.func.php, 找:
[code]function cpfooter() {
global $version;
?>
<br><br><br><br><hr size="0" noshade color="<?=BORDERCOLOR?>" width="80%"><center><font style="font-size: 11px; font-family: Tahoma, Verdana, Arial">
Powered by <a href="http://www.discuz.net" target="_blank" style="color: <?=TEXT?>"><b>Discuz!</b> <?=$version?></a> © 2001-2006, <b>
<a href="http://www.comsenz.com" target="_blank" style="color: <?=TEXT?>">Comsenz Inc.</a></b></font>
</body>
</html>
[/code]
替换为:
[code]function cpfooter() {
global $version, $debuginfo, $gzipcompress;
?>
<br><br><br><br><hr size="0" noshade color="<?=BORDERCOLOR?>" width="80%"><center><font style="font-size: 11px; font-family: Tahoma, Verdana, Arial">
<? if(debuginfo()) { ?><br>Processed in <?=$debuginfo[time]?> second(s), <?=$debuginfo[queries]?> queries<? if($gzipcompress) { ?>, Gzip enabled<? } ?><? } ?><br>
Powered by <a href="http://www.discuz.net" target="_blank" style="color: <?=TEXT?>"><b>Discuz!</b> <?=$version?></a> © 2001-2006, <b>
<a href="http://www.comsenz.com" target="_blank" style="color: <?=TEXT?>">Comsenz Inc.</a></b></font>
</body>
</html>
[/code]
[img]http://www.discuz.net/attachments/month_0606/footer_aFGljolXA9hc.jpg[/img]
页:
[1]