Quote:
Today at 09:43 PM drumsy said this in Post #3184
What is the fix for the insane server load time?
|
[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;
}