Ich hab halt ein Statuscheck für einen CS2D Dedicated gemacht, der lautet:
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
<?php @$connection = fsockopen("81.30.158.143", 36970, &$errno, &$errstr,1); if (!$connection){ echo "<b><font color=red>Offline</font></b>"; }else{ fputs($connection, "\n"); echo "</a><b><font color=#00ff00>Online</font></b>"; fclose ($connection); } echo "<br>"; ?>
Ist auch schön und gut, funktioniert auch. Blos jetzt habe ich das Problem das er immer Offline anzeigt. Es funktioniert mit allen anderen Ports, blos wenn ich einen port von einem Dedicated Server mache kommt immer offline. Was mache ich falsch?
greets Littlericket