Quote:
Originally posted by Xelation
is there a way to make it so that admins can only see the stats?
|
you mean the hole stats?
REPLACE:
Code:
// ###################### Start dooutput #######################
function dooutput($vartext,$sendheader=1) {
global $pagestarttime,$query_count,$showqueries,$querytime,$DB_site,$gzipoutput,$gziplevel,$bbuserinfo,$microstats;
$pageendtime=microtime();
$starttime=explode(" ",$pagestarttime);
$endtime=explode(" ",$pageendtime);
// time format (how many digits you want to show)
$digits=8;
$totaltime=$endtime[0]-$starttime[0]+$endtime[1]-$starttime[1];
$trimmedtime=number_format($totaltime,$digits);
$percentphp=number_format(((($totaltime-$querytime)/$totaltime)*100),2).'% PHP';
$percentsql=number_format((($querytime/$totaltime)*100),2).'% MySQL';
if ($bbuserinfo['usergroupid']==6) {
if ($debug==1) {
$debugmode='Debug Mode <font color="{ hovercolor }">ON</font>';
} else {
$debugmode='Debug Mode OFF';
}
if ($gzipoutput==1) {
$gziptext='GZIP <font color="{ hovercolor }">enabled</font> - level '.$gziplevel;
} else {
$gziptext='GZIP disabled';
}
$versionnum=phpversion();
if ($stats=@exec('uptime')) {
preg_match('/averages?: ([0-9\.]+),[\s]+([0-9\.]+),[\s]+([0-9\.]+)/',$stats,$regs);
$serverload=' [Server Load: <font color="{ hovercolor }"><b>'.$regs[1].'</b></font> ? '.$regs[2].' : '.$regs[3].']';
} else {
$serverload='';
}
$adminstats='<br>['.$debugmode.'] [PHP v'.$versionnum.'] ['.$gziptext.']'.$serverload;
} else {
$adminstats='';
}
if ($showqueries) {
$vartext .= "<!-- Page generated in $totaltime seconds with $query_count queries -->";
} else {
eval("\$microstats = \"".gettemplate('home_microstats')."\";");
}
WITH:
Code:
// ###################### Start dooutput #######################
function dooutput($vartext,$sendheader=1) {
global $pagestarttime,$query_count,$showqueries,$querytime,$DB_site,$gzipoutput,$gziplevel,$bbuserinfo,$microstats;
$pageendtime=microtime();
$starttime=explode(" ",$pagestarttime);
$endtime=explode(" ",$pageendtime);
// time format (how many digits you want to show)
$digits=8;
$totaltime=$endtime[0]-$starttime[0]+$endtime[1]-$starttime[1];
$trimmedtime=number_format($totaltime,$digits);
$percentphp=number_format(((($totaltime-$querytime)/$totaltime)*100),2).'% PHP';
$percentsql=number_format((($querytime/$totaltime)*100),2).'% MySQL';
if ($debug==1) {
$debugmode='Debug Mode <font color="{ hovercolor }">ON</font>';
} else {
$debugmode='Debug Mode OFF';
}
if ($gzipoutput==1) {
$gziptext='GZIP <font color="{ hovercolor }">enabled</font> - level '.$gziplevel;
} else {
$gziptext='GZIP disabled';
}
$versionnum=phpversion();
if ($stats=@exec('uptime')) {
preg_match('/averages?: ([0-9\.]+),[\s]+([0-9\.]+),[\s]+([0-9\.]+)/',$stats,$regs);
$serverload='[Server Load: <font color="{ hovercolor }"><b>'.$regs[1].'</b></font> ? '.$regs[2].' : '.$regs[3].']';
} else {
$serverload='';
}
if ($showqueries) {
$vartext .= "<!-- Page generated in $totaltime seconds with $query_count queries -->";
} else {
$microstats='';
if ($bbuserinfo['usergroupid']==6) {
eval("\$microstats = \"".gettemplate('home_microstats')."\";");
}
}
Your template should look like:
Code:
Page generated in $trimmedtime seconds ($percentphp - $percentsql) with $query_count queries.<br>
[$debugmode] [PHP v$versionnum] [$gziptext] $serverload
Don't forget to remove the spaces between [high]hovercolor[/high] brackets.