Quote:
Originally Posted by TECK
Please check the way you mod the files, make sure you use a good php/text editor, for example TextPad.
I'm glad this tip was useful for you.
Regards,
Floren.
|
TECK, there is a problem with your hack if one uses it with the German language system offered by vBulletin (works fine with default US English, of course):
Code:
Warning: Division by zero in /var/www/html/forum/includes/functions.php on line 1839
Warning: Division by zero in /var/www/html/forum/includes/functions.php on line 1840
This seems to happen, whenever a page is generated in less than 1 second.
These are the lines 1839 and 1840 in functions.php
PHP Code:
$msphp = vb_number_format(((($totaltime - $querytime) / $totaltime) * 100), 2) . '% PHP';
$mssql = vb_number_format((($querytime / $totaltime) * 100), 2) . '% MySQL';
Results for pages generated in less than 1 second:
Code:
Page generated in 0,36060596 seconds (0,00% PHP - 0,00% MySQL) with 11 queries
The php warning doesn't appear if a page is generated in more than one second but the results still are inaccurate:
Code:
Page generated in 6,94200397 seconds (-10,53% PHP - 110,53% MySQL) with 11 queries
I assume this could be caused by the fact that German uses "," where English uses a "." and vice versa. Do you have a fix for this, please? One that works regardless if one selects English or German as language, preferrably?