Quote:
Today at 08:11 AM User_001 said this in Post #801
change this value
// time format (how many digits you want to show)
$digits=8;
to anything you want, it's located in admin/functions
about 8 lines from
// ###################### Start dooutput #######################
as for the 100% PHP, rehack db_mysql.php, i believe thats the file..
I also have noticed you have your gzip level at 2, i was lead to believe then anything over a 1, wouldn't be any better. and would create more load. anyone else know if this is true??
https://vborg.vbsupport.ru/showthrea...ression+levels
|
I did this for the $digit:
PHP Code:
// time format
$digits=4;
$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';
And its still doing like 12 digitis long, and rehack the db_ file? I followed the install file right, I triple checked, after reading the thread, but its still doing it, I used the 2.3.0 verison of the hack, as I have a 2.3.0 board, or should I apply the older version?