Хак отображает кол-во времени за которое был открыт сайт!
1. Открыть index.php & найти:
2. Открытое Main.tpl и добавить этот код в вашу функцию места шаблона:
Сделали !!!
echo $tpl->result['main'];
Заменить:
eval (' ?' . '>' . $tpl->result['main'] . '<' . '?php ');
Заменить:
eval (' ?' . '>' . $tpl->result['main'] . '<' . '?php ');
2. Открытое Main.tpl и добавить этот код в вашу функцию места шаблона:
<?php
/*
Page Loader
*/
// Insert at the very top of your page
$time = microtime();
$time = explode(" ", $time);
$time = $time[1] + $time[0];
$start = $time;
?>
<?php
// Place at the very bottom of your page
$time = microtime();
$time = explode(" ", $time);
$time = $time[1] + $time[0];
$finish = $time;
$totaltime = ($finish - $start);
printf ("Site Open In <b>%f</b> Seconds.", $totaltime);
// The above line can be changed but remember to keep %f
?>
/*
Page Loader
*/
// Insert at the very top of your page
$time = microtime();
$time = explode(" ", $time);
$time = $time[1] + $time[0];
$start = $time;
?>
<?php
// Place at the very bottom of your page
$time = microtime();
$time = explode(" ", $time);
$time = $time[1] + $time[0];
$finish = $time;
$totaltime = ($finish - $start);
printf ("Site Open In <b>%f</b> Seconds.", $totaltime);
// The above line can be changed but remember to keep %f
?>
Сделали !!!