I got it working.
I had to change this:
PHP Code:
if (preg_match("/averages?: ([0-9\.]+), [\s]+([0-9\.]+), [\s]+([0-9\.]+)/", $stats, $regs))
to this:
PHP Code:
preg_match("/averages?: ([0-9\.]+), [\s]+([0-9\.]+), [\s]+([0-9\.]+)/", $stats, $regs);
For some reason there was an if in that line. I know I have
exec('uptime') enabled on the server because it was working fine before. And after taking the if out, it works fine now again. Thank you, Teck, for converting this to vB3.

I added a couple of things to mine, in case anyone wants to see it.