MyBB Community Forums

Full Version: Server Details PHP Script?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I've seen the script a thousand times but I cannot for the life of me remember where or what it was called. Anybody have any ideas?

It showed PHP details, CPU, memory, disk IO, network, etc...

I was going to code my own but I wanted to see if I could find the name of this one.
Nah, I can do that. I am looking for a specific (and popular) PHP script.
Can try something like this have not tested it.
Uptime: <?php system("uptime"); ?><br>
Memory Usage (MB): <?php system("free -m"); ?><br>
Disk Usage: <?php system("df -h"); ?><br>

Not sure about DISK IO and CPU. if you want the script i was love to see it
(2011-04-30, 03:48 AM)dmmcintyre3 Wrote: [ -> ]Is it http://phpsysinfo.sourceforge.net/?
This is it!

(2011-04-30, 03:49 AM)ChrisR Wrote: [ -> ]Can try something like this have not tested it.
Uptime: <?php system("uptime"); ?><br>
Memory Usage (MB): <?php system("free -m"); ?><br>
Disk Usage: <?php system("df -h"); ?><br>

Not sure about DISK IO and CPU. if you want the script i was love to see it
As I said twice, I could do this already if I wanted to.