Results 1 to 10 of 11

Thread: Server Tracker

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Private First Class
    Join Date
    Dec 2012
    Posts
    127
    Thanks
    132
    Thanked 114 Times in 63 Posts

    Server Tracker

    Hey guys,
    currently I'm working on my own server-list or server-tracker nvm.
    Since my hosting provider is not allowing fSockOpen(), so there is my question is there any other way to get ip and port. Below simple code what I mean:

    PHP Code:
    <?php

    $ip 
    "127.0.0.1";
    $port "13";

    $con fsockopen("udp://$ip"$port$errno$errstr);
    if (!
    $con) {
        echo 
    "offline";
    } else {
        echo 
    "online";
    }

    ?>
    Tried on other hosting but they have restricted ports for some reasons.
    Last edited by Jeplaa; 8th April 2013 at 14:47.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •