Try this:
You must have php installed, As well as PEAR.PHP Code:<?php
require 'Net/Ping.php';
$ping = new Net_Ping;
if($ping->checkhost('www.example.com')){
echo "Reachable";
}else {
echo "Unreachable";
}
?>
Change the URL into your desired one.
Try this:
You must have php installed, As well as PEAR.PHP Code:<?php
require 'Net/Ping.php';
$ping = new Net_Ping;
if($ping->checkhost('www.example.com')){
echo "Reachable";
}else {
echo "Unreachable";
}
?>
Change the URL into your desired one.
if that works go ahead and if not loop through the next servers until one does work.
Bookmarks