Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Tut] Simple php server status .

Custom Title Activated
Loyal Member
Joined
Dec 21, 2007
Messages
1,040
Reaction score
127
Hello! I'm here to give you guys a simple as hell server status script. This was released by Mustek, on the habbo section , but it actually can be used here aswell. No habbo images included.

Difficulty : 1/10
Used for: Displaying your Server status .
Download the attached file and follow these instructions :

1- Extract the files in a folder of your choice.
2- Open the the file named 'server.php' in a notepad.
What to edit in server.php =
Code:
$port[1] = "YOUR SERVER PORT HERE";            $service[1] = "YOUR SERVER NAME HERE";            $ip[1] = "YOUR IP HERE";    $icon[1] = "habbo.jpg";        $alt[1] = "Server";
$port[2] = "YOUR WEB PORT HERE";            $service[2] = "YOUR WEBSITE NAME HERE";                $ip[2] = "YOUR WEBSITE IP HERE";    $icon[2] = "web.png";        $alt[2] = "Website";
Obvious on what to edit, right ?
After you're done, close, save and upload to your host.
Done :)
Questions , reply.
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Feb 13, 2009
Messages
49
Reaction score
0
found an error on serverstatus.php

replace:
<?php include(server.php);?>

with:
<?php include("server.php");?>
 
Back
Top