bumperciseandaquatots.co.uk Report : Visit Site


  • Server:Apache/2.4.39 (Unix)...

    The main IP address: 79.170.44.116,Your server United Kingdom,Nottingham ISP:Heart Internet Ltd  TLD:uk CountryCode:GB

    The description :site down for . "; exit; } if (!is_writable(tmp_templates_c_location) || !is_writable(tmp_cache_location)) { echo ' error '; echo ' the following directories must be writable by the web server: '; ech...

    This report updates in 01-Aug-2019

Created Date:2005-05-23
Changed Date:2017-05-23

Technical data of the bumperciseandaquatots.co.uk


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

Latitude: 52.953601837158
Longitude: -1.1504700183868
Country: United Kingdom (GB)
City: Nottingham
Region: England
ISP: Heart Internet Ltd

HTTP Header Analysis


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

Content-Length:10482
Accept-Ranges:bytes
Server:Apache/2.4.39 (Unix)
Last-Modified:Wed, 09 Mar 2011 20:06:30 GMT
ETag:"28f2-49e1243be7d80"
Date:Thu, 01 Aug 2019 07:21:28 GMT
Content-Type:x-mapp-php5

DNS

soa:ns.mainnameserver.com. hostmaster.mainnameserver.com. 2014121269 86400 604800 2419200 10800
ns:ns.mainnameserver.com.
ns2.mainnameserver.com.
ipv4:IP:79.170.44.116
ASN:20773
OWNER:GODADDY, DE
Country:GB
mx:MX preference = 10, mail exchanger = mail.bumperciseandaquatots.co.uk.

HtmlToText

site down for . "; exit; } if (!is_writable(tmp_templates_c_location) || !is_writable(tmp_cache_location)) { echo ' error '; echo ' the following directories must be writable by the web server: '; echo 'tmp/cache '; echo 'tmp/templates_c '; echo ' please correct by executing: chmod 777 tmp/cache chmod 777 tmp/templates_c or the equivilent for your platform before continuing. '; echo ' '; exit; } require_once($dirname.'/include.php'); // optionally enable output compression (as long as debug mode isn't on) if( isset($config['output_compression']) && ($config['output_compression']) && $config['debug'] != true ) { @ob_start('ob_gzhandler'); } else { @ob_start(); } $params = array_merge($_get, $_post); $smarty = cmsms()->getsmarty(); $smarty->params = $params; $page = get_pageid_or_alias_from_url(); $contentops = cmsms()->getcontentoperations(); $contentobj = ''; if( $page == '__cms_preview_page__' && isset($_session['cms_preview']) ) // temporary { $tpl_name = trim($_session['cms_preview']); $fname = ''; if (is_writable($config["previews_path"])) { $fname = cms_join_path($config["previews_path"] , $tpl_name); } else { $fname = cms_join_path(tmp_cache_location , $tpl_name); } $fname = $tpl_name; if( !file_exists($fname) ) { die('error preview temp file not found: '.$fname); return false; } // build pageinfo $fh = fopen($fname,'r'); $_session['cms_preview_data'] = unserialize(fread($fh,filesize($fname))); fclose($fh); unset($_session['cms_preview']); $contentobj = $contentops->loadcontentfromserializeddata($_session['cms_preview_data']); $contentobj->setid('__cms_preview_page__'); } else { $contentobj = $contentops->loadcontentfromalias($page,true); } if( !is_object($contentobj) ) { // specified page not found, load the 404 error page. $contentobj = $contentops->loadcontentfromalias('error404',true); if( !is_object($contentobj) ) { // that wasn't found either... display a hardcoded message. errorhandler404(); return; } else { header("http/1.0 404 not found"); header("status: 404 not found"); } } // $page cannot be empty here if (is_object($contentobj)) { if( !$contentobj->isviewable() ) { $url = $contentobj->geturl(); if( $url != '' && $url != '#' ) { redirect($url); } } if( $contentobj->secure() && (! isset($_server['https']) || empty($_server['https']) || $_server['https'] == 'off') ) { // if this page is marked to be secure, make sure we redirect to the secure page. redirect($contentobj->geturl()); } $allow_cache = (int)get_site_preference('allow_browser_cache',0); $expiry = (int)max(0,get_site_preference('browser_cache_expiry',60)); $expiry *= $allow_cache; if( $_server['request_method'] == 'post' || !$contentobj->cachable() || $page == '__cms_preview_page__' || $expiry == 0 ) { // here we adjust headers for non cachable pages header("expires: mon, 26 jul 1997 05:00:00 gmt"); header("last-modified: " . gmdate("d, d m y h:i:s") . " gmt"); header("cache-control: no-store, no-cache, must-revalidate"); header("cache-control: post-check=0, pre-check=0", false); header("pragma: no-cache"); } else { // as far as we know, the output is cachable at this point... // so we mark it so that the output can be cached. header('expires: '.gmdate("d, d m y h:i:s",time() + $expiry * 60).' gmt'); $the_date = time(); if( $contentobj->cachable() ) { $the_date = $contentobj->getmodifieddate(); } header('last-modified: ' . gmdate('d, d m y h:i:s',$the_date) . ' gmt'); } cmsms()->set_variable('content_obj',$contentobj); $smarty->assign('content_obj',$contentobj); if( $contentobj->secure() && (! isset($_server['https']) || empty($_server['https']) || $_server['https'] == 'off') ) { // if this page is marked to be secure, make sure we redirect to the secure page. redirect($contentobj->geturl()); } cmsms()->set_variable('content_obj',$contentobj); cmsms()->set_variable('content_id',$contentobj->id()); cmsms()->set_variable('page',$page); cmsms()->set_variable('page_id',$page); cmsms()->set_variable('page_name',$contentobj->alias()); cmsms()->set_variable('position',$contentobj->hierarchy()); cmsms()->set_variable('friendly_position',$contentops->createfriendlyhierarchyposition($contentobj->hierarchy())); $smarty->assign('content_obj',$contentobj); $smarty->assign('content_id', $contentobj->id()); $smarty->assign('page', $page); $smarty->assign('page_id', $page); $smarty->assign('page_name', $contentobj->alias()); $smarty->assign('page_alias', $contentobj->alias()); $smarty->assign('position', $contentobj->hierarchy()); $smarty->assign('friendly_position', $gcms->variables['friendly_position']); } else // else if (get_site_preference('enablecustom404') == '' || get_site_preference('enablecustom404') == "0") { errorhandler404(); exit; } $html = ''; $showtemplate = true; if ((isset($_request['showtemplate']) && $_request['showtemplate'] == 'false') || (isset($smarty->id) && $smarty->id != '' && isset($_request[$smarty->id.'showtemplate']) && $_request[$smarty->id.'showtemplate'] == 'false')) { $showtemplate = false; } if (isset($_get["print"])) { $pageinfo = cmsms()->get_variable('pageinfo'); $html = $smarty->fetch('print:'.$page, '', $pageinfo->template_id) . "\n"; } else { #if this is a case where a module doesn't want a template to be shown, just disable caching if( !$showtemplate ) { // snarfed from process_pagedata plugin $tpl = $contentobj->getpropertyvalue('pagedata',''); if( !empty($tpl) ) { $smarty->_compile_source('preprocess template', $tpl, $_compiled); @ob_start(); $smarty->_eval('?>' . $_compiled); $result = @ob_get_contents(); @ob_end_clean(); } // now parse the default content block. $html = $smarty->fetch('template:notemplate') . "\n"; } else { //$smarty->caching = false; // $smarty->compile_check = true; // we allow backward compatibility (for a while) // for people that have hacks for setting page title // or header variables by capturing a modules output // to a smarty variable, and then displaying it later. if( isset($config['process_whole_template']) && $config['process_whole_template'] === false ) { $top = $smarty->fetch('tpl_top:'.$contentobj->templateid()); $body = $smarty->fetch('tpl_body:'.$contentobj->templateid()); $head = $smarty->fetch('tpl_head:'.$contentobj->templateid()); $html = $top.$head.$body; } else { $html = $smarty->fetch('template:'.$contentobj->templateid()); } } } events::sendevent('core', 'contentpostrender', array('content' => &$html)); header("content-type: " . cmsms()->get_variable('content-type') . "; charset=" . get_encoding()); echo $html; @ob_flush(); $endtime = microtime(); $db =& cmsms()->getdb(); $memory = (function_exists('memory_get_usage')?memory_get_usage():0); $memory = $memory - $orig_memory; $memory_peak = (function_exists('memory_get_peak_usage')?memory_get_peak_usage():0); if ( !is_sitedown() && $config["debug"] == true) { echo " generated in ".microtime_diff($starttime,$endtime)." seconds by cms made simple using ".(isset($db->query_count)?$db->query_count:'')." sql queries and {$memory} bytes of memory (peak memory usage was {$memory_peak}) "; } else if( isset($config['show_performance_info']) && ($showtemplate == true) ) { echo " query_count)?$db- query_count:'')." / {$memory} / {$memory_peak} -- \n"; } if( is_sitedown() || $config['debug'] == true) { $smarty->clear_compiled_tpl(); #$smarty->clear_all_cache(); } if ( !is_sitedown() && $config["debug"] == true) { #$db->logsql(false); // turn off logging # output summary of sql logging results #$perf = newperfmonitor($db); #echo $perf->suspicioussql(); #echo $perf->expensivesql(); #echo $sql_queries; foreach ($gcms->errors as $error) { echo $error; } } if( $page == '__cms_preview_page__' && isset($_session['cms_previ

URL analysis for bumperciseandaquatots.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;


Domain name:
bumperciseandaquatots.co.uk

Registrant:
Bumpercise & Aquatots

Registrant type:
Unknown

Registrant's address:
39 Cambridge Road
Impington
Cambridge
CB4 9NU
United Kingdom

Data validation:
Nominet was able to match the registrant's name and address against a 3rd party data source on 25-Sep-2014

Registrar:
Heart Internet Ltd t/a Heart Internet [Tag = HEARTINTERNET]
URL: http://www.heartinternet.co.uk

Relevant dates:
Registered on: 23-May-2005
Expiry date: 23-May-2019
Last updated: 23-May-2017

Registration status:
Registered until expiry date.

Name servers:
ns.mainnameserver.com
ns2.mainnameserver.com

WHOIS lookup made at 07:41:47 04-Nov-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 bumperciseandaquatots.co.uk

  PORT 43

  TYPE domain

OWNER

  ORGANIZATION Bumpercise & Aquatots

TYPE
Unknown

ADDRESS
39 Cambridge Road
Impington
Cambridge
CB4 9NU
United Kingdom
Data validation:
Nominet was able to match the registrant's name and address against a 3rd party data source on 25-Sep-2014

DOMAIN

  SPONSOR Heart Internet Ltd t/a Heart Internet [Tag = HEARTINTERNET]

  CREATED 2005-05-23

  CHANGED 2017-05-23

STATUS
Registered until expiry date.

NSERVER

  NS.MAINNAMESERVER.COM 79.170.40.2

  NS2.MAINNAMESERVER.COM 79.170.43.3

  NAME bumperciseandaquatots.co.uk

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 yes

Go to top

Mistakes


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

  • www.ubumperciseandaquatots.com
  • www.7bumperciseandaquatots.com
  • www.hbumperciseandaquatots.com
  • www.kbumperciseandaquatots.com
  • www.jbumperciseandaquatots.com
  • www.ibumperciseandaquatots.com
  • www.8bumperciseandaquatots.com
  • www.ybumperciseandaquatots.com
  • www.bumperciseandaquatotsebc.com
  • www.bumperciseandaquatotsebc.com
  • www.bumperciseandaquatots3bc.com
  • www.bumperciseandaquatotswbc.com
  • www.bumperciseandaquatotssbc.com
  • www.bumperciseandaquatots#bc.com
  • www.bumperciseandaquatotsdbc.com
  • www.bumperciseandaquatotsfbc.com
  • www.bumperciseandaquatots&bc.com
  • www.bumperciseandaquatotsrbc.com
  • www.urlw4ebc.com
  • www.bumperciseandaquatots4bc.com
  • www.bumperciseandaquatotsc.com
  • www.bumperciseandaquatotsbc.com
  • www.bumperciseandaquatotsvc.com
  • www.bumperciseandaquatotsvbc.com
  • www.bumperciseandaquatotsvc.com
  • www.bumperciseandaquatots c.com
  • www.bumperciseandaquatots bc.com
  • www.bumperciseandaquatots c.com
  • www.bumperciseandaquatotsgc.com
  • www.bumperciseandaquatotsgbc.com
  • www.bumperciseandaquatotsgc.com
  • www.bumperciseandaquatotsjc.com
  • www.bumperciseandaquatotsjbc.com
  • www.bumperciseandaquatotsjc.com
  • www.bumperciseandaquatotsnc.com
  • www.bumperciseandaquatotsnbc.com
  • www.bumperciseandaquatotsnc.com
  • www.bumperciseandaquatotshc.com
  • www.bumperciseandaquatotshbc.com
  • www.bumperciseandaquatotshc.com
  • www.bumperciseandaquatots.com
  • www.bumperciseandaquatotsc.com
  • www.bumperciseandaquatotsx.com
  • www.bumperciseandaquatotsxc.com
  • www.bumperciseandaquatotsx.com
  • www.bumperciseandaquatotsf.com
  • www.bumperciseandaquatotsfc.com
  • www.bumperciseandaquatotsf.com
  • www.bumperciseandaquatotsv.com
  • www.bumperciseandaquatotsvc.com
  • www.bumperciseandaquatotsv.com
  • www.bumperciseandaquatotsd.com
  • www.bumperciseandaquatotsdc.com
  • www.bumperciseandaquatotsd.com
  • www.bumperciseandaquatotscb.com
  • www.bumperciseandaquatotscom
  • www.bumperciseandaquatots..com
  • www.bumperciseandaquatots/com
  • www.bumperciseandaquatots/.com
  • www.bumperciseandaquatots./com
  • www.bumperciseandaquatotsncom
  • www.bumperciseandaquatotsn.com
  • www.bumperciseandaquatots.ncom
  • www.bumperciseandaquatots;com
  • www.bumperciseandaquatots;.com
  • www.bumperciseandaquatots.;com
  • www.bumperciseandaquatotslcom
  • www.bumperciseandaquatotsl.com
  • www.bumperciseandaquatots.lcom
  • www.bumperciseandaquatots com
  • www.bumperciseandaquatots .com
  • www.bumperciseandaquatots. com
  • www.bumperciseandaquatots,com
  • www.bumperciseandaquatots,.com
  • www.bumperciseandaquatots.,com
  • www.bumperciseandaquatotsmcom
  • www.bumperciseandaquatotsm.com
  • www.bumperciseandaquatots.mcom
  • www.bumperciseandaquatots.ccom
  • www.bumperciseandaquatots.om
  • www.bumperciseandaquatots.ccom
  • www.bumperciseandaquatots.xom
  • www.bumperciseandaquatots.xcom
  • www.bumperciseandaquatots.cxom
  • www.bumperciseandaquatots.fom
  • www.bumperciseandaquatots.fcom
  • www.bumperciseandaquatots.cfom
  • www.bumperciseandaquatots.vom
  • www.bumperciseandaquatots.vcom
  • www.bumperciseandaquatots.cvom
  • www.bumperciseandaquatots.dom
  • www.bumperciseandaquatots.dcom
  • www.bumperciseandaquatots.cdom
  • www.bumperciseandaquatotsc.om
  • www.bumperciseandaquatots.cm
  • www.bumperciseandaquatots.coom
  • www.bumperciseandaquatots.cpm
  • www.bumperciseandaquatots.cpom
  • www.bumperciseandaquatots.copm
  • www.bumperciseandaquatots.cim
  • www.bumperciseandaquatots.ciom
  • www.bumperciseandaquatots.coim
  • www.bumperciseandaquatots.ckm
  • www.bumperciseandaquatots.ckom
  • www.bumperciseandaquatots.cokm
  • www.bumperciseandaquatots.clm
  • www.bumperciseandaquatots.clom
  • www.bumperciseandaquatots.colm
  • www.bumperciseandaquatots.c0m
  • www.bumperciseandaquatots.c0om
  • www.bumperciseandaquatots.co0m
  • www.bumperciseandaquatots.c:m
  • www.bumperciseandaquatots.c:om
  • www.bumperciseandaquatots.co:m
  • www.bumperciseandaquatots.c9m
  • www.bumperciseandaquatots.c9om
  • www.bumperciseandaquatots.co9m
  • www.bumperciseandaquatots.ocm
  • www.bumperciseandaquatots.co
  • bumperciseandaquatots.co.ukm
  • www.bumperciseandaquatots.con
  • www.bumperciseandaquatots.conm
  • bumperciseandaquatots.co.ukn
  • www.bumperciseandaquatots.col
  • www.bumperciseandaquatots.colm
  • bumperciseandaquatots.co.ukl
  • www.bumperciseandaquatots.co
  • www.bumperciseandaquatots.co m
  • bumperciseandaquatots.co.uk
  • www.bumperciseandaquatots.cok
  • www.bumperciseandaquatots.cokm
  • bumperciseandaquatots.co.ukk
  • www.bumperciseandaquatots.co,
  • www.bumperciseandaquatots.co,m
  • bumperciseandaquatots.co.uk,
  • www.bumperciseandaquatots.coj
  • www.bumperciseandaquatots.cojm
  • bumperciseandaquatots.co.ukj
  • www.bumperciseandaquatots.cmo
Show All Mistakes Hide All Mistakes