Quote:
Originally Posted by Boofo
Here's what I did. I changed:
PHP Code:
if ($stats = @exec('uptime 2>&1') AND trim($stats) != '')
{
if (preg_match("/averages?: ([0-9\.]+), [\s]+([0-9\.]+), [\s]+([0-9\.]+)/", $stats, $regs))
to:
PHP Code:
if ( $stats = @exec( 'uptime' ) )
{
preg_match( '/averages?: ([0-9\.]+),[\s]+([0-9\.]+),[\s]+([0-9\.]+)/' , $stats , $regs );
and it works right now. Here is a fresh screenshot of my server load (so you can see that it is working).
Sorry about this Floren. 
|
Try this for me please:
Code:
if ($stats = @exec('uptime 2>&1') AND trim($stats) != '')
{
Let me know if it's working. It should display the stats if the values are not 0 only. Thanks.