Polecam włączyć debug czasów wykonywania. Aby włączyć per user można podmienić fragment w pliku config.php
function from_request($str, $enable) {
if ($enable) return $enable;
$ret = 0;
if (isset($_GET[$str])) {
$ret = $_GET[$str] == true ? 1 : 0;
setcookie($str, $ret);
} elseif (isset($_COOKIE[$str]) && $_COOKIE[$str]) {
$ret = $_COOKIE[$str] == true ? 1 : 0;
}
return $ret;
}
/*
* Show module loading time ... = module + all children times
*/
define("MODULE_TIMES", from_request('MODULE_TIMES', 0));
/*
* Show queries execution time.
*/
define("SQL_TIMES", from_request('SQL_TIMES', 0));
wtedy włączyć epesi z parametrem http://epesi/?SQL_TIMES=1
, a on sobie zapamięta na naszą sesję, żeby wyświetlać czas wykonywania SQL.
Pozdrawiam,
Adam