i got mine own 
ok i will help you a thing its not install by its self
so you need to go to your database and do a new table with 5 columns
call the table serverstatus
and the 5 colomns
Code:
- Name With VARCHAR (20)
- IP With VARCHAR (50)
- Port With VARCHAR (6)
- Uptime With VARCHAR (999999)
- Total With VARCHAR (999999)

and go to your Server_Status.php
in the top its like this
[PHP] $con = mysql_connect("@@@@@@@", "123456789", "######") or die(mysql_error());
if (!$con) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db("Database") or die(mysql_error());
}
$Link = mysql_connect ("@@@@@@@", "123456789", "######");
$Result = mysql_db_query ("£££££££", "SELECT * from `serverstatus`", $Link);
$User = "My Name";
$Pass = "My Pass"
/PHP]
Edit the @@@@@@@ to that url to your Mysql Database
Edit the £££££££ to that Name (The Database name) to your Mysql Database
Edit the ###### to that Name to your Mysql Database
Edit the 123456789 to that Name to loggin to your Mysql Database
Than you will see this $User = " " $Pass = " " Edit it its for the admin login
so have the
[PHP]$User = "My Name";
$Pass = "My Pass"
/PHP]
and it should be no more error =) hope it helped