armsasbestos.co.uk Report : Visit Site


  • Server:Apache...

    The main IP address: 91.109.247.10,Your server United Kingdom,London ISP:UK2 - Ltd  TLD:uk CountryCode:GB

    The description :| // +----------------------------------------------------------------------+ // // sitellite content server // // $id: index,v 1.22 2008/05/07 08:49:42 lux exp $ // // this script is used to generate...

    This report updates in 04-Dec-2018

Technical data of the armsasbestos.co.uk


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host armsasbestos.co.uk. Currently, hosted in United Kingdom and its service provider is UK2 - Ltd .

Latitude: 51.508529663086
Longitude: -0.12574000656605
Country: United Kingdom (GB)
City: London
Region: England
ISP: UK2 - Ltd

the related websites

HTTP Header Analysis


HTTP Header information is a part of HTTP protocol that a user's browser sends to called Apache containing the details of what the browser wants and will accept back from the web server.

Content-Length:6585
Content-Encoding:gzip
Accept-Ranges:bytes
Vary:Accept-Encoding
Keep-Alive:timeout=20, max=100
Server:Apache
Last-Modified:Mon, 18 Oct 2010 14:56:43 GMT
Connection:Keep-Alive
ETag:"13734849-5e1d-492e5626820c0"
Date:Tue, 04 Dec 2018 05:09:19 GMT
Content-Type:application/x-httpd-php

DNS

soa:ns0.wokkie.net. info.webintegrations.co.uk. 1297332599 3600 600 1209600 3600
txt:"v=spf1 a mx -all"
ns:ns0.webint.co.uk.
ns0.wokkie.net.
ipv4:IP:91.109.247.10
ASN:13213
OWNER:UK2NET-AS, GB
Country:GB
mx:MX preference = 10, mail exchanger = mail.armsasbestos.co.uk.

HtmlToText

| // +----------------------------------------------------------------------+ // // sitellite content server // // $id: index,v 1.22 2008/05/07 08:49:42 lux exp $ // // this script is used to generate all of the pages in your site. it is // the base index file that you should have people default to seeing when // they hit your domain. this can be accomplished using a simple redirect, // or through apache directives, having a static splash page link to this // one, or by renaming this file accordingly, although there may be // consequences to some of these possibilities. our recommendation is to // use apache directives to add this to the directoryindex list, and to // use a forcetype directive to make the server aware that this is a php // file. for more information, see the install file and the .htaccess // file that come with this file. // // this script implements the controller component of the // model-view-controller (mvc) design pattern. for more information about // mvc application design, please read the sitellite content server // developer manual. // /*************************************************************************/ /* create global $conf array */ /*************************************************************************/ $conf = parse_ini_file ('inc/conf/config.ini.php', true); $conf2 = parse_ini_file ('inc/conf/cache.php', true); if (file_exists ('inc/conf/product.php')) { $conf3 = parse_ini_file ('inc/conf/product.php', true); $conf = array_merge ($conf, $conf2, $conf3); } else { $conf = array_merge ($conf, $conf2); } // set the error_reporting level eval ('?' . '> '); if (function_exists ('date_default_timezone_set') && $conf['server']['default_timezone']) { date_default_timezone_set ($conf['server']['default_timezone']); } // split values which should be arrays //$conf['cache']['cacheable'] = preg_split ('/, ?/', $conf['cache']['cacheable']); /*************************************************************************/ /*************************************************************************/ /* send sitellite http header */ /*************************************************************************/ // we send a sitellite http header to track which version of the software // is being run. this will produce a header in the form: // x-powered-by: sitellite/x.0.x include_once ('inc/conf/version.php'); if ($conf['server']['send_version_header']) { header ('x-powered-by: sitellite/' . sitellite_version); } /*************************************************************************/ /*************************************************************************/ /* initialize library loader */ /*************************************************************************/ // this simply imports the saf/init.php file. // this file also creates global $loader, $cgi, and $simple objects, // of the types loader, cgi, and simpletemplate, respectively. include_once ($conf['site']['safpath'] . '/init.php'); /*************************************************************************/ /*************************************************************************/ /* i18n initializations */ /*************************************************************************/ $loader->import ('saf.cgi.cookie'); $loader->import ('saf.i18n'); $cookie = new cookie; // holds cookie info $lang_dirs = array ($conf['i18n']['directory']); if ($type == 'app' && @is_dir ('inc/app/' . $request . '/lang')) { $lang_dirs[] = 'inc/app/' . $request . '/lang'; } elseif ($type == 'box' || $type == 'form') { $app = array_shift (split ('/', $request)); if (@is_dir ('inc/app/' . $app . '/lang')) { $lang_dirs[] = 'inc/app/' . $app . '/lang'; } } $intl = new i18n ($lang_dirs, $conf['i18n']['negotiate']); // translation object $intl->method = $conf['i18n']['serialize']; /*************************************************************************/ /*************************************************************************/ /* cache evaluation */ /*************************************************************************/ // if duration is 0, cache is turned off if ($conf['cache']['duration'] > 0) { // load cache class $loader->import ('saf.cache'); // set the $uri variable $uri = $_server['request_uri']; // create a cache object and tell it where to cache files (directory, // berkeley database, or via proxy/caching) $cache = new cache ($conf['cache']['location'], $conf['cache']['duration']); if ( // make sure page is cacheable $cache->is_cacheable ($uri, $conf['cacheable']) && // make sure no post variables were sent (can't cache posted pages) count ($_post) == 0 ) { // if the cached copy has not expired, use it. if (! $cache->expired ($uri, $conf['cache']['duration'])) { // display page from cache. //echo 'using cached copy'; if ($conf['server']['compress_output'] && extension_loaded ('zlib')) { ob_start ('ob_gzhandler'); } echo $cache->show ($uri); $loader->import ('sitetracker.bug'); exit; } else { //echo $uri; // let the script carry its course, and cache the data before // it is sent to the visitor. //echo 'generating new copy: ' . $cache->serialize ($uri); } } else { //echo $uri; // page is not cacheable, carry on //echo 'page not cacheable'; } // below is essentially the else to the cache system. // remember, if we're caching the page, we need to hold // all the data in an output buffer, then output it to // the user and to the file. } /*************************************************************************/ /*************************************************************************/ /* auto-detect values for $conf['site'] */ /*************************************************************************/ // set domain if ($_server['http_host']) { $conf['site']['domain'] =& $_server['http_host']; } $_df = dirname (__file__); $_rt = rtrim ($_server['document_root'], '/'); if (empty ($_rt)) { $_rt = $_df; } $conf['site']['abspath'] = $_df; if ($conf['site']['usedocroot']) { // get docroot and prefix from conf } elseif ($_df != $_rt) { if (strstr ($_df, $_rt)) { // it appears that the site is installed in a sub-directory -- use the path as the root $conf['site']['docroot'] = $_df; list ($null, $conf['site']['prefix']) = explode ($_rt, $_df); } else { // it appears that the document root doesn't match the file path // now we need to look at the current request // note: this block needs testing $current = $_server['request_uri']; $pos = strpos ($current, '?'); if ($pos > 0) { $current = substr ($current, 0, $pos); } $pos = strpos ($current, '#'); if ($pos > 0) { $current = substr ($current, 0, $pos); } list ($current, $null) = explode ('/index', $current); if (! empty ($current)) { if (substr ($current, -1) == '/' && strlen ($current) > 1) { $current = substr ($current, 0, -1); } list ($conf['site']['docroot'], $null) = explode ($current, $_df); } else { $conf['site']['docroot'] = $_df; } $conf['site']['prefix'] = $current; } } else { // same, we're working out of a root directory -- good! $conf['site']['docroot'] = $_df; $conf['site']['prefix'] = ''; } /* // set docroot if (empty ($conf['site']['docroot'])) { if ($conf['site']['usedocroot']) { $conf['site']['docroot'] =& $_server['document_root']; } else { $conf['site']['docroot'] =& $_df; } } */ // set appdir $conf['site']['appdir'] =& $conf['site']['docroot']; // set prefix //list ($null, $conf['site']['prefix']) = explode ($conf['site']['docroot'], $_df); // set webpath and adminpath if (empty ($conf['site']['prefix'])) { $conf['site']['webpath'] = '/'; } else { $conf['site']['webpath'] = $conf['site']['prefix']; } //set level $c = substr_count ($conf['site']['prefix'], '/'); if ($c > 0) { // '/(\/)/', $conf['site']['prefix'], $regs)) { $conf['site']['level'] = $c; } else { $conf['site']['level'] = 0; } if ($conf['site']['remove_index'] && $conf['site']['level'] > 0) { $conf['site']['level']--; } if ($intl->url_increase_level) {

URL analysis for armsasbestos.co.uk




Whois Information


Whois is a protocol that is access to registering information. You can reach when the website was registered, when it will be expire, what is contact details of the site with the following informations. In a nutshell, it includes these informations;

Error for "armsasbestos.co.uk".

the WHOIS query quota for 2600:3c03:0000:0000:f03c:91ff:feae:779d has been exceeded
and will be replenished in 238 seconds

WHOIS lookup made at 16:23:29 27-Oct-2017

--
This WHOIS information is provided for free by Nominet UK the central registry
for .uk domain names. This information and the .uk WHOIS are:

Copyright Nominet UK 1996 - 2017.

You may not access the .uk WHOIS or use any data from it except as permitted
by the terms of use available in full at http://www.nominet.uk/whoisterms,
which includes restrictions on: (A) use of the data for advertising, or its
repackaging, recompilation, redistribution or reuse (B) obscuring, removing
or hiding any or all of this notice and (C) exceeding query rate or volume
limits. The data is provided on an 'as-is' basis and may lag behind the
register. Access may be withdrawn or restricted at any time.

  REFERRER http://www.nominet.org.uk

  REGISTRAR Nominet UK

SERVERS

  SERVER co.uk.whois-servers.net

  ARGS armsasbestos.co.uk

  PORT 43

  TYPE domain

DISCLAIMER
This WHOIS information is provided for free by Nominet UK the central registry
for .uk domain names. This information and the .uk WHOIS are:
Copyright Nominet UK 1996 - 2017.
You may not access the .uk WHOIS or use any data from it except as permitted
by the terms of use available in full at http://www.nominet.uk/whoisterms,
which includes restrictions on: (A) use of the data for advertising, or its
repackaging, recompilation, redistribution or reuse (B) obscuring, removing
or hiding any or all of this notice and (C) exceeding query rate or volume
limits. The data is provided on an 'as-is' basis and may lag behind the
register. Access may be withdrawn or restricted at any time.

  REGISTERED no

DOMAIN

  NAME armsasbestos.co.uk

NSERVER

  NS0.WEBINT.CO.UK 91.109.247.10

  NS0.WOKKIE.NET 83.170.73.132

Go to top

Mistakes


The following list shows you to spelling mistakes possible of the internet users for the website searched .

  • www.uarmsasbestos.com
  • www.7armsasbestos.com
  • www.harmsasbestos.com
  • www.karmsasbestos.com
  • www.jarmsasbestos.com
  • www.iarmsasbestos.com
  • www.8armsasbestos.com
  • www.yarmsasbestos.com
  • www.armsasbestosebc.com
  • www.armsasbestosebc.com
  • www.armsasbestos3bc.com
  • www.armsasbestoswbc.com
  • www.armsasbestossbc.com
  • www.armsasbestos#bc.com
  • www.armsasbestosdbc.com
  • www.armsasbestosfbc.com
  • www.armsasbestos&bc.com
  • www.armsasbestosrbc.com
  • www.urlw4ebc.com
  • www.armsasbestos4bc.com
  • www.armsasbestosc.com
  • www.armsasbestosbc.com
  • www.armsasbestosvc.com
  • www.armsasbestosvbc.com
  • www.armsasbestosvc.com
  • www.armsasbestos c.com
  • www.armsasbestos bc.com
  • www.armsasbestos c.com
  • www.armsasbestosgc.com
  • www.armsasbestosgbc.com
  • www.armsasbestosgc.com
  • www.armsasbestosjc.com
  • www.armsasbestosjbc.com
  • www.armsasbestosjc.com
  • www.armsasbestosnc.com
  • www.armsasbestosnbc.com
  • www.armsasbestosnc.com
  • www.armsasbestoshc.com
  • www.armsasbestoshbc.com
  • www.armsasbestoshc.com
  • www.armsasbestos.com
  • www.armsasbestosc.com
  • www.armsasbestosx.com
  • www.armsasbestosxc.com
  • www.armsasbestosx.com
  • www.armsasbestosf.com
  • www.armsasbestosfc.com
  • www.armsasbestosf.com
  • www.armsasbestosv.com
  • www.armsasbestosvc.com
  • www.armsasbestosv.com
  • www.armsasbestosd.com
  • www.armsasbestosdc.com
  • www.armsasbestosd.com
  • www.armsasbestoscb.com
  • www.armsasbestoscom
  • www.armsasbestos..com
  • www.armsasbestos/com
  • www.armsasbestos/.com
  • www.armsasbestos./com
  • www.armsasbestosncom
  • www.armsasbestosn.com
  • www.armsasbestos.ncom
  • www.armsasbestos;com
  • www.armsasbestos;.com
  • www.armsasbestos.;com
  • www.armsasbestoslcom
  • www.armsasbestosl.com
  • www.armsasbestos.lcom
  • www.armsasbestos com
  • www.armsasbestos .com
  • www.armsasbestos. com
  • www.armsasbestos,com
  • www.armsasbestos,.com
  • www.armsasbestos.,com
  • www.armsasbestosmcom
  • www.armsasbestosm.com
  • www.armsasbestos.mcom
  • www.armsasbestos.ccom
  • www.armsasbestos.om
  • www.armsasbestos.ccom
  • www.armsasbestos.xom
  • www.armsasbestos.xcom
  • www.armsasbestos.cxom
  • www.armsasbestos.fom
  • www.armsasbestos.fcom
  • www.armsasbestos.cfom
  • www.armsasbestos.vom
  • www.armsasbestos.vcom
  • www.armsasbestos.cvom
  • www.armsasbestos.dom
  • www.armsasbestos.dcom
  • www.armsasbestos.cdom
  • www.armsasbestosc.om
  • www.armsasbestos.cm
  • www.armsasbestos.coom
  • www.armsasbestos.cpm
  • www.armsasbestos.cpom
  • www.armsasbestos.copm
  • www.armsasbestos.cim
  • www.armsasbestos.ciom
  • www.armsasbestos.coim
  • www.armsasbestos.ckm
  • www.armsasbestos.ckom
  • www.armsasbestos.cokm
  • www.armsasbestos.clm
  • www.armsasbestos.clom
  • www.armsasbestos.colm
  • www.armsasbestos.c0m
  • www.armsasbestos.c0om
  • www.armsasbestos.co0m
  • www.armsasbestos.c:m
  • www.armsasbestos.c:om
  • www.armsasbestos.co:m
  • www.armsasbestos.c9m
  • www.armsasbestos.c9om
  • www.armsasbestos.co9m
  • www.armsasbestos.ocm
  • www.armsasbestos.co
  • armsasbestos.co.ukm
  • www.armsasbestos.con
  • www.armsasbestos.conm
  • armsasbestos.co.ukn
  • www.armsasbestos.col
  • www.armsasbestos.colm
  • armsasbestos.co.ukl
  • www.armsasbestos.co
  • www.armsasbestos.co m
  • armsasbestos.co.uk
  • www.armsasbestos.cok
  • www.armsasbestos.cokm
  • armsasbestos.co.ukk
  • www.armsasbestos.co,
  • www.armsasbestos.co,m
  • armsasbestos.co.uk,
  • www.armsasbestos.coj
  • www.armsasbestos.cojm
  • armsasbestos.co.ukj
  • www.armsasbestos.cmo
Show All Mistakes Hide All Mistakes