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
Code:
$mtime = microtime();
$mtime = explode(" ",$mtime);
$mtime = $mtime[1] + $mtime[0];
$starttime = $mtime;
---------------------------
in the page footer:
include at the end
Code:
$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);