Quote:
Originally Posted by msimplay
[high]Originally posted by TECK [/high]
This is a minor change required to make it work in vbHome (lite).
FILE: vbHL global.php
FIND:
Code:
$pagestarttime = 0;
if ( isset( $HTTP_GET_VARS['showqueries'] ) or isset( $HTTP_POST_VARS['showqueries'] ) or isset( $showqueries ) )
{
$showqueries = 1;
$pagestarttime = microtime();
}
REPLACE WITH:
Code:
$pagestarttime = microtime();
if ( isset( $HTTP_GET_VARS['showqueries'] ) or isset( $HTTP_POST_VARS['showqueries'] ) or isset( $showqueries ) )
{
$showqueries = 1;
}
|
Sorry, but this did not work for me. I tried to find this obvious fix everywhere. Postet everywhere but no one could help. And due to having multiple domains and forums from Teck down, i had no help.
So i tried it on my own and you showed me the right way. But your code did not work. I had to add after your code in the /global.php an additional line but not in the /forum/global.php.
Code before:
Code:
$pagestarttime = 0;
if ( isset( $HTTP_GET_VARS['showqueries'] ) or isset( $HTTP_POST_VARS['showqueries'] ) or isset( $showqueries ) )
{
$showqueries = 1;
$pagestarttime = microtime();
}
Code after the change:
Code:
$pagestarttime = 0;
if ( isset( $HTTP_GET_VARS['showqueries'] ) or isset( $HTTP_POST_VARS['showqueries'] ) or isset( $showqueries ) )
{
$showqueries = 1;
//$pagestarttime = microtime();
}
$pagestarttime = microtime();
I hope that other people facing the same problem have now the fix for this microstats problem or your insane server load time problem.
Cheers,
Pseudomizer