Things you will need:
apache server
php processor
or just AppServ
internet access
Snaity's php.ini
1) Install AppServ
2) Open notepad
2a) Put the following code into the file:
Code:
<form action="status.php" method="post"> Enter Server IP: <input type="text" name="ip" /><br> Enter Port: <input type="text" name="port" /><br> <input type="submit" /> </form>
3) Open Notepad again
3a) Put the following code into the file:
Code:
<?php
echo "Status: ";
= @fsockopen(ip, port, errno, errstr, 1);
if (!) {
echo "<B>Offline</B>";
}
else
{
echo "<B>Online</B>";
fclose();
}
?>
4) Place the php.ini inside of C:\WINDOWS\
5) Go to localhost in your browser and you will see the results
The status checker should look somewhat like this when your done:
How to use checker:
Type in the server IP and port then hit SubmitQuery







