Page 1 of 1

[SOLVED] Page processing time - info missing in 1.7.1

Posted: Fri May 28, 2010 1:16 pm
by NikNak
Hi

Up to v 1.7 there was a snippet at the end of each html page listing the processing time required.

It seems to be missing from v 1.7.1  -  is there any way to get this back again?  It's so useful to judge performance.

Thanks

Nik

Re: Page processing time - info missing in 1.7.1

Posted: Fri May 28, 2010 1:37 pm
by Rolf
Hi Niknak

Add to config.php:

Code: Select all

$config['hide_performance_info'] = true;

grtz. Rolf

Re: Page processing time - info missing in 1.7.1

Posted: Fri May 28, 2010 1:42 pm
by NikNak
Cheers

- just tried that but nothing changed.

also tried $config['hide_performance_info'] = false;


:-(

Re: Page processing time - info missing in 1.7.1

Posted: Fri May 28, 2010 1:58 pm
by Rolf
Ohh, I am sorry, copied the old code
It should be:

Code: Select all

$config['show_performance_info'] = 1;
Rolf

Re: Page processing time - info missing in 1.7.1

Posted: Fri May 28, 2010 2:00 pm
by NikNak
Bingo

Thanks so much

Nik