WHMCS IP Address Unblocker

Our WHMCS (Web Host Manager Complete Solution) IP Address Unblocker is the newest addition to our family of plugins. It allows you to easily unblock a computer’s IP address if it was blocked by our system’s security software. An IP (Internet Protocol) address is a series of numbers assigned to each different computer. Most commonly an IP address gets blocked by attempting to login incorrectly 3 or more times. This plugin will save you time. We created it to make it easier and more convenient for you to correct this immediately on your end without needing to contact us.

The IP Address Unblocker is already installed on our servers. There’s nothing you need to download for you to begin using this. If you failed to login correctly on any computer or mobile device, simply log in to our billing system and at the top left you’ll see the UNBLOCK button. Click it and you’ll have 3 more opportunities to login correctly from the IP address you are attempting to do so on. You now have the power to unblock!! No ring to find in a semi-active volcano necessary.


The 2by2host Team

Is my website is down?

There are times when your site doesn’t open for some reason and normally there’s a reason for it.  Here are the simple steps to take before contacting your hosting provider. Keep in mind the more information you provider the faster your issues will be resolved.

Can you open any other site on the Internet?

In our browser open google.com and run a search.  If that works your internet is working properly and you don’t need to contact your Internet Service Provider.  Move on to the next step.

Is DNS service for your site working properly?

DNS service is responsible for translating domain and host names to IP addresses. It is a critical component of how your site is found on the Internet.

Go to command line/shell on your computer:

PC: Go to Start – Run. Type in cmd

Mac: Navigate to Applications – Utilities then double-click on Terminal

From there type in nslookup yoursite.com (yoursite.com is the full address of your site)

If this command doesn’t return any information it can mean that either your ISP’s name servers are not working correctly or your web hosting provider is having issues or your domain is not pointing to correct name servers. If other sites are opening fine for you contact your hosting provider otherwise, contact your ISP.

Can you ping your site?

Ping is like saying hello to a friend and expecting a hello back. If there’s no answer something is not right.

Go to command line/shell on your computer:

Type in ping yoursite.com

You should see an immediate “Reply from” messages. If you are not seeing that your IP might be blocked by the firewall on the server or the data center. You can use DownForEveryoneOrJustMe service to see if it’s just you who can’t access your site and if it is, log in to your billing account and unblock your IP address or send the IP to your hosting provider (doing this from your billing account is much faster) so that they would unblock it for you. You can get your IP address by going to to our site and using the What is your IP address utility.

Does your site display an error message?

Pay attention to any errors you see in your browser and copy them in their entirety to the email you will send to your hosting provider.

404 Error

 

 

Can’t Access Site

Can’t Access Your Site that is hosted with us?

Not being able to access your website is usually the result of one of the following:

1. Internet connectivity issues
2. The IP address of a customer was blocked due to incorrect login details (username/and or password) used AT LEAST THREE TIMES.

1. In the case of the first scenario, contact your local Internet Service Provider (ISP) as they are who you are paying for consistent, reliable access to the internet. If you can’t access other websites besides your own, it’s obviously a temporary problem with their network, or a localized problem near your home or office. Wind, rain, snow, etc, can cause such problems and your ISP may not be aware of these localized problems in their network unless you contact them.

2. Situation #2 here happens as a security measure to prevent unauthorized access to your site. Like in baseball, 3 strikes and you’re out, when you or someone else types in incorrect information to log into your site 3 or more times, the security software flags this as a possible hacker with malicious intent to safeguard you. We understand typos happen and people often forget passwords.

Should you be locked out due to multiple attempts to login to your site, please email us: https://www.2by2host.com/contact

There is no charge to do this, we know mistakes can happen but the benefits outweigh the negatives of having this security protocol in place. In fact, you’ll notice many free social networking sites like Facebook also have similar lockout or verification processes to authenticate the actual intended user in the case of multiple incorrect login attempts or even logging in correctly from a different computer (IP address).

We realize this can be an inconvenience but you’ll gain an appreciation for having this safeguard when you think “how does this look to a computer?” It looks like someones trying to break into your site by guessing passwords. Log into your site from a friend or family member’s computer sometime or from a computer in a different country and you’ll be glad there’s authentication protocols built into the software preventing unauthorized access.

Traceroute

Traceroute result

";	

system("traceroute " . preg_replace ("/[^A-Za-z0-9.]/","",$_POST['host']));

echo "

“;

}

else {

?>

Enter IP or Host

“>

Very Strong Password Generator

For your convenience we generated 2 groups of 5 different passwords each. Strong and medium groups. Please note that these passwords are secure and generated only for you (for this particular session) and every time you refresh the page the passwords below will change as they generated automatically.

Strong passwords

Hard to remember, but easy to write down.

    <?
    $count=0;
    $limit = "5";
    while($limit–) {
    $count++;
    $pass = substr(crypt(date(rand())),3,18);
    echo "

  1. $pass
  2. “;
    }
    ?>

Semi-strong passwords

Easy to remember.

    <?
    $count=0;
    $limit = "5";
    while($limit–) {
    $count++;
    $pass = substr(md5(crypt(date(rand()))),3,9);
    echo "

  1. $pass
  2. “;
    }
    ?>

If you wish to see new passwords, just press the “Generate passwords again” button below.

W3C online validator

“red”,”Valid” => “#59AD34”);

if (!empty($_POST['urls'])) {
$host = get_headers(“http://validator.w3.org/check?uri=”. url_encode($_POST['urls']));
$status = trim(str_replace(“X-W3C-Validator-Status:”,””,$host['5']));

echo “

Validation results

HTML code for $_POST[urls]$status

“;

}

?>

Validate your HTML pages

Please enter one URL per line

<textarea name=”urls” style=”width:285px”></textarea>

FTP login details checker

function ifExistValueShowIt($valuename) {

if (!empty($_REQUEST[$valuename]))
echo $_REQUEST[$valuename];

}

// Например из строки host : http://domen.com извлечёт domen.com
function clean_cred($cred) {

$cred = str_replace(‘http://’, ”, $cred);
$cred = preg_replace(‘//$/si’, ”, $cred);
$cred = preg_replace(‘/^(.+?:)/si’, ”, $cred);
$cred = trim($cred);

return($cred);

}

// Проверка
function CheckFTP() {

$elements = explode(”
“, $_POST[‘elements’]);

$elements = array_map(‘trim’, $elements);

$creds = array();

for ($i=0; $i<count($elements); $i++) {

// Пропускаем пустые строки
if (empty($elements[$i])) {
continue;
}

// Чистим строки от легенд
$creds[]= clean_cred($elements[$i]);
}

if (count($creds) != 3) {

return(‘Неправильно введены данные!’);
}

// установка соединения
$conn_id = @ftp_connect($creds[‘0’]);

if ($conn_id) {

// попытка входа
if (@ftp_login($conn_id, $creds[‘1’], $creds[‘2’])) {
return “Success, connected to $creds[0] as $creds[1]@$creds[2]
“;
} else {
return “Wrong username $creds[1] or password $creds[2]
“;
}

// Закрытие соединения
ftp_close($conn_id);

}

else return(“$creds[0] is refused connection”);

}

?>

Example 1:
2by2host.com
login12
password13

Example 2:
host: https://2by2host.com/
log in :login12

password13

<textarea name=”elements” style=”width: 400px;” rows=”7″><? ifExistValueShowIt(“elements”); ?></textarea>

<? if ($_POST) echo CheckFTP(); ?>

Flushing DNS cache

DNS cache is something that your computer uses to quickly look up the IP address of for example a web site. There are some situations that will require your to clear your DNS cache in order to get the latest information.

To flush DNS cache in Microsoft Windows (98, 2000, XP, Vista, 7):

  • Go to Start -> Run -> type in cmd
  • from command prompt, type ipconfig /flushdns
  • that will reset your DNS cache

To flush DNS cache on Mac OSX (Leopard):

  • type lookupd -flushcache in the terminal window
  • that will reset your DNS cache

To flush DNS cache on Mac OSX:

  • type dscacheutil -flushcache in your terminal window
  • that will reset your DNS cache

To flush DNS cache on a Linux box you need to restart the nscd service/daemon:

  • type /etc/rc.d/init.d/nscd restart the terminal window
  • that will reset your DNS cache
We have experienced Linux and Windows specialists on-site, so you can always contact our hosting support team, if you have any issues accessing your website.