ShibSta Posted April 30, 2006 Share Posted April 30, 2006 I am wanting a server status for the servers of a MMORPG called Lineage II.I want one similar to [a href=\"http://www.glop.org/lineage2/\" target=\"_blank\"]http://www.glop.org/lineage2/[/a]However, they're not willing to release the source due to someone who previously took it and made a virus out of it then posted a it on Lineage2.com...Anyway, does anyone know of a premade class where I can simply edit a page and add the address' and ports?Reason I ask for a premade one is not only because it's easy but also because I'm a visual learner. I have read a few things on php.net but that just confuses the heck out of me.Any help is greatly appriciated, Thanks Link to comment https://forums.phpfreaks.com/topic/8756-server-status/ Share on other sites More sharing options...
greenba Posted April 30, 2006 Share Posted April 30, 2006 Try to visit:[a href=\"http://fluttstatus.com/\" target=\"_blank\"]http://fluttstatus.com/[/a]They have a nice one. Link to comment https://forums.phpfreaks.com/topic/8756-server-status/#findComment-32166 Share on other sites More sharing options...
ShibSta Posted April 30, 2006 Author Share Posted April 30, 2006 Thanks but thats a bit more than I want, I want a basic one... I got a server status page made and working however how can I make it display a ping?Site similar: [a href=\"http://www.glop.org/lineage2/\" target=\"_blank\"]http://www.glop.org/lineage2/[/a]Mine: [a href=\"http://68.68.120.172:5000/status/\" target=\"_blank\"]http://68.68.120.172:5000/status/[/a] Link to comment https://forums.phpfreaks.com/topic/8756-server-status/#findComment-32241 Share on other sites More sharing options...
ShibSta Posted May 1, 2006 Author Share Posted May 1, 2006 Ok, I found a script I'd like to combine into the one I currently have.Currently I am using this: [a href=\"http://pastebin.com/692046\" target=\"_blank\"]http://pastebin.com/692046[/a]To add servers I simply have:[code]<?phpinclude 'serverstatus.php';$test = new status;$test->AddService('000.000.000.000', 1111, 'name', 'tcp');$data = $test->GetStatus();?></span><table border="0" cellpadding="0" cellspacing="0" class="status"><tr><td colspan="2" class="top"> </td></tr><?phpfor ($i = 0; $i <= count($data) - 1; $i++) { if ($data[$i]['status']) { //$img = '<img src="on.gif" width=12 height=12>'; $img = $on = 'online'; } else { $img = $off ='down'; // $img = '<img src="off.gif" width=12 height=12>'; } ?> <tr> <td nowrap class="left">- <strong class="yellow"><?php echo $data[$i]['service']; ?></strong></td> <td nowrap class="right"><span class="up"><?php echo $img; ?></span></td> </tr> <?php}?>[/code]Now I want to combine it with the latency feature of this page.[a href=\"http://pastebin.com/692050\" target=\"_blank\"]http://pastebin.com/692050[/a]I am fairly new to this so if someone could practically give me the code I'd appriciate it. I am more of a visual learner by seeing before/after...I need to get the code into a varible such as $lat or $ping when I run $data = $test->GetStatus();. Link to comment https://forums.phpfreaks.com/topic/8756-server-status/#findComment-32327 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.