MyBB Community Forums

Full Version: [F] Server load: nothing (MyBB 1.4.5) [R]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hello all.
I just upgrade my forum to mybb 1.4.5

and the server load in the debug status became an empty string.

and in the ACP it's unknown

my server details are.

OS ubuntu 8.10
Php version 5.2.6
Apache 2.2.9


is there is something I missed?
Mine works just fine.

Can we get some screenshots? Smile
same to me.... Big Grin server load: unknown
(2009-04-19, 01:15 PM)Ryan Loos Wrote: [ -> ]Mine works just fine.

Can we get some screenshots? Smile

surly.

Edit: fixed here by applying the following changes.
in inc/functions.php

find
if(!is_numeric($serverload))
		{
			if(@ini_get('safe_mode') == 'On')
			{
				return $lang->unknown;
			}
replace with
if(!$serverload)
		{
			if(@ini_get('safe_mode') == 'On')
			{
				return $lang->unknown;
			}
Here my screen shot
the same here.

waiting for fix !
Don't worry.. The developer will find the solution for this. Big Grin
http://community.mybboard.net/thread-46986.html

Is this a regression from that?
Try changing:

if(!is_numeric($serverload))

to

if(!is_numeric($serverload[0]))

Thanks,
Ryan
Thank you for your bug report.

This bug has been fixed in our internal code repository. Please note that the problem will not be fixed here until these forums are updated.

With regards,
MyBB Group
Pages: 1 2