PDA

View Full Version : Queries and Loadtime (in seconds) on footer...


Crinos
12-03-2001, 02:19 AM
I dunno if this had been suggested yet coz I didn't find it when I did a search (dunno if anyone even wanted it).

I like the way phpBB2 shows the info at the bottom of the forum containing the number of queries executed, as well as the time it took to load the page. It's can be a nice debug tool!

I was wondering if this was possible to do in vBulletin, wherein only administrators can see this info, while regular users and mods cannot ... Is this possible?

Check the attachment to see what I mean ... anyone up to it?

cditty
12-03-2001, 02:26 AM
Looks cool. Might be usefull if we could turn it on and off though.

Chris

Crinos
12-04-2001, 08:57 PM
~bump ;)

derfelix
12-05-2001, 01:13 PM
this feature existed also in the 1.x versions of phpbb
when php 4 came out....
it was used to measure the spead gain with and without compression..... the code is so easy there is no point in calling it a hack....


in the page header: include somewhere



$mtime = microtime();
$mtime = explode(" ",$mtime);
$mtime = $mtime[1] + $mtime[0];
$starttime = $mtime;


---------------------------

in the page footer:
include at the end

$mtime = microtime();
$mtime = explode(" ",$mtime);
$mtime = $mtime[1] + $mtime[0];
$endtime = $mtime;
$totaltime = ($endtime - $starttime);
printf("<center><font size=-2>Vbulletin Created this page in %f seconds.</font></center>", $totaltime);

SgtSling
12-06-2001, 03:48 PM
include it how?

with what call?

Goldfinger
12-07-2001, 02:21 AM
<?php code here ?>

SgtSling
12-07-2001, 03:16 AM
Doesnt work

Breasts,
Sarge