PDA

View Full Version : Page generated in X seconds


wAnBoA
02-19-2009, 09:34 AM
I saw some of the sites have this
"Page generated in X seconds with X queries" at the bottom of the site.

Etc.
http://jpicforum.info/index.php

How can i install this ?

bananalive
02-19-2009, 11:42 AM
For page time:

Add at beginning of code/page
$starttime = microtime();

And at end
$endtime = vb_number_format(fetch_microtime_difference($start time), 2);

nexialys
02-19-2009, 11:46 AM
hum, check this thread instead: https://vborg.vbsupport.ru/showthread.php?t=172087

snakes1100
02-19-2009, 01:48 PM
<a href="https://vborg.vbsupport.ru/showthread.php?t=82900" target="_blank">https://vborg.vbsupport.ru/showthread.php?t=82900</a>

This hack does work on all versions that ive used it on, this will tell you more info about your pages, queries, load times, php/mysql usage etc.

wAnBoA
02-19-2009, 04:07 PM
snakes1100 : Bravo my friend. Thanks!

vbplusme
02-19-2009, 05:33 PM
https://vborg.vbsupport.ru/showthread.php?t=82900

This hack does work on all versions that ive used it on, this will tell you more info about your pages, queries, load times, php/mysql usage etc.


Nice, thanks for the tip.