Page 2 of 2 FirstFirst 12
Results 11 to 12 of 12

Thread: Server Status Online/Offline

  1. #11
    Join Date
    Mar 2008
    Posts
    122
    Thanks
    17
    Thanked 5 Times in 5 Posts

    Default

    Try this:
    PHP Code:
    <?php
    require 'Net/Ping.php';
    $ping = new Net_Ping;

    if(
    $ping->checkhost('www.example.com')){
    echo 
    "Reachable";
    }else {
    echo 
    "Unreachable";
    }
    ?>
    You must have php installed, As well as PEAR.
    Change the URL into your desired one.

  2. #12
    Join Date
    Jan 2009
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    if that works go ahead and if not loop through the next servers until one does work.

Bookmarks

Posting Permissions

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