oilmasters.co.uk Report : Visit Site


  • Server:Apache...

    The main IP address: 5.77.56.25,Your server United Kingdom,Maidenhead ISP:eUKhost 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 14-Jul-2018

Created Date:2005-09-01
Changed Date:2017-08-02

Technical data of the oilmasters.co.uk


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

Latitude: 51.522789001465
Longitude: -0.71986001729965
Country: United Kingdom (GB)
City: Maidenhead
Region: England
ISP: eUKhost 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:4340
Content-Encoding:gzip
Accept-Ranges:bytes
Expires:Mon, 13 Aug 2018 12:10:25 GMT
Vary:Accept-Encoding
Keep-Alive:timeout=5, max=100
Server:Apache
Last-Modified:Sat, 24 Jan 2015 14:43:28 GMT
Connection:Keep-Alive
Cache-Control:public
Date:Sat, 14 Jul 2018 12:10:25 GMT
X-Frame-Options:SAMEORIGIN
Content-Type:text/plain

DNS

soa:ns126.eukdns.com. support.eukhost1x.com. 2017021000 86400 7200 3600000 86400
txt:"v=spf1 +a +mx +ip4:5.77.56.25 +ip4:5.77.56.32 +ip4:5.77.56.26 ~all"
ns:ns127.eukdns.com.
ns126.eukdns.com.
ipv4:IP:5.77.56.25
ASN:20860
OWNER:IOMART-AS, GB
Country:GB
mx:MX preference = 10, mail exchanger = mail.budeselfstorage.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'); @ob_start(); // initial setup $gcms = cmsms(); $params = array_merge($_get, $_post); $smarty = $gcms->getsmarty(); $smarty->params = $params; $page = get_pageid_or_alias_from_url(); $contentops = cmsms()->getcontentoperations(); $contentobj = ''; $trycount = 0; while( $trycount < 2 ) { $trycount++; try { if( !is_object($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) ) { throw new cmsexception('preview selected, but temp file not found: '.$fname); } // 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) ) { throw new cmserror404exception('page '.$page.' not found'); } //debug_display('got content '.$contentobj->alias()); // from here in, we're assured to have a content object. if( !$contentobj->isviewable() ) { $url = $contentobj->geturl(); if( $url != '' && $url != '#' ) { redirect($url); } // not viewable, throw a 404. throw new cmserror404exception('cannot view an unviewable page'); } if( $contentobj->secure() && !cmsms()->is_https_request() ) { // if this page is marked to be secure, make sure we redirect to the secure page. redirect($contentobj->geturl()); } if( !$contentobj->ispermitted() ) { throw new cmserror403exception('permission denied'); } $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() && !cmsms()->is_https_request() ) { // 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_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']); cmsnlsoperations::set_language(); // <- nls detection for frontend $smarty->assign('lang',cmsnlsoperations::get_current_language()); $smarty->assign('encoding',cmsnlsoperations::get_encoding()); $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; } $smarty->set_global_cacheid('p'.$contentobj->id()); $uid = get_userid(false); if( $contentobj->cachable() && $showtemplate && !$uid && get_site_preference('use_smartycache',0) && $_server['request_method'] != 'post' ) { if( version_compare(phpversion(),'5.3') >= 0 ) { // this content is cachable... so enable smarty caching of this page data, for this user. $smarty->setcaching(smarty::caching_lifetime_current); } } if( !$showtemplate ) { $smarty->setcaching(false); // in smarty 3, we could use eval:{content} i think. //$html = $smarty->fetch('eval:{content}')."\n"; $html = $smarty->fetch('template:notemplate')."\n"; $trycount = 99; } else { //debug_display('display content '.$contentobj->alias().' '.$page); debug_buffer('process template top'); $top = $smarty->fetch('tpl_top:'.$contentobj->templateid()); debug_buffer('process template body'); $body = $smarty->fetch('tpl_body:'.$contentobj->templateid()); debug_buffer('process template head'); $head = $smarty->fetch('tpl_head:'.$contentobj->templateid()); $html = $top.$head.$body; $trycount = 99; // no more iterations. } } catch (smartycompilerexception $e) // <- catch smarty compile errors { $handlers = ob_list_handlers(); for ($cnt = 0; $cnt < sizeof($handlers); $cnt++) { ob_end_clean(); } echo $smarty->errorconsole($e); return; } catch (smartyexception $e) // <- catch rest of smarty errors { $handlers = ob_list_handlers(); for ($cnt = 0; $cnt < sizeof($handlers); $cnt++) { ob_end_clean(); } echo $smarty->errorconsole($e); return; } catch (cmserror404exception $e) // <- catch cmsms 404 error { //debug_display('handle 404 exception '.$e->getfile().' at '.$e->getline().' -- '.$e->getmessage()); // 404 error thrown... gotta do this process all over again. $page = 'error404'; $showtemplate = true; unset($_request['mact']); unset($_request['module']); unset($_request['action']); $handlers = ob_list_handlers(); for ($cnt = 0; $cnt < sizeof($handlers); $cnt++) { ob_end_clean(); } // specified page not found, load the 404 error page. $contentobj = $contentops->loadcontentfromalias('error404',true); if( is_object($contentobj) ) { // we have a 404 error page. 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"); header("http/1.0 404 not found"); header("status: 404 not found"); } else { // no 404 error page. 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"); errorhandler404(); return; } } catch (cmserror403exception $e) // <- catch cmsms 403 error { //debug_display('handle 404 exc

URL analysis for oilmasters.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:
oilmasters.co.uk

Registrant:
Oil Masters

Trading as:
Oil Masters

Registrant type:
Other UK Entity (e.g. clubs, associations, many universities)

Registrant's address:
Bude Self Storage
Stratton View Business Park
Stratton
Cornwall
EX23 9NR
United Kingdom

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

Registrar:
Fasthosts Internet Ltd [Tag = LIVEDOMAINS]
URL: http://www.fasthosts.co.uk

Relevant dates:
Registered on: 01-Sep-2005
Expiry date: 01-Sep-2019
Last updated: 02-Aug-2017

Registration status:
Registered until expiry date.

Name servers:
ns126.eukdns.com
ns127.eukdns.com

WHOIS lookup made at 00:28:23 03-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 oilmasters.co.uk

  PORT 43

  TYPE domain

OWNER

  ORGANIZATION Oil Masters

TYPE
Other UK Entity (e.g. clubs, associations, many universities)

ADDRESS
Bude Self Storage
Stratton View Business Park
Stratton
Cornwall
EX23 9NR
United Kingdom
Data validation:
Nominet was able to match the registrant's name and address against a 3rd party data source on 18-Dec-2015

DOMAIN

  SPONSOR Fasthosts Internet Ltd [Tag = LIVEDOMAINS]

  CREATED 2005-09-01

  CHANGED 2017-08-02

STATUS
Registered until expiry date.

NSERVER

  NS126.EUKDNS.COM 5.77.56.25

  NS127.EUKDNS.COM 5.77.56.26

  NAME oilmasters.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.uoilmasters.com
  • www.7oilmasters.com
  • www.hoilmasters.com
  • www.koilmasters.com
  • www.joilmasters.com
  • www.ioilmasters.com
  • www.8oilmasters.com
  • www.yoilmasters.com
  • www.oilmastersebc.com
  • www.oilmastersebc.com
  • www.oilmasters3bc.com
  • www.oilmasterswbc.com
  • www.oilmasterssbc.com
  • www.oilmasters#bc.com
  • www.oilmastersdbc.com
  • www.oilmastersfbc.com
  • www.oilmasters&bc.com
  • www.oilmastersrbc.com
  • www.urlw4ebc.com
  • www.oilmasters4bc.com
  • www.oilmastersc.com
  • www.oilmastersbc.com
  • www.oilmastersvc.com
  • www.oilmastersvbc.com
  • www.oilmastersvc.com
  • www.oilmasters c.com
  • www.oilmasters bc.com
  • www.oilmasters c.com
  • www.oilmastersgc.com
  • www.oilmastersgbc.com
  • www.oilmastersgc.com
  • www.oilmastersjc.com
  • www.oilmastersjbc.com
  • www.oilmastersjc.com
  • www.oilmastersnc.com
  • www.oilmastersnbc.com
  • www.oilmastersnc.com
  • www.oilmastershc.com
  • www.oilmastershbc.com
  • www.oilmastershc.com
  • www.oilmasters.com
  • www.oilmastersc.com
  • www.oilmastersx.com
  • www.oilmastersxc.com
  • www.oilmastersx.com
  • www.oilmastersf.com
  • www.oilmastersfc.com
  • www.oilmastersf.com
  • www.oilmastersv.com
  • www.oilmastersvc.com
  • www.oilmastersv.com
  • www.oilmastersd.com
  • www.oilmastersdc.com
  • www.oilmastersd.com
  • www.oilmasterscb.com
  • www.oilmasterscom
  • www.oilmasters..com
  • www.oilmasters/com
  • www.oilmasters/.com
  • www.oilmasters./com
  • www.oilmastersncom
  • www.oilmastersn.com
  • www.oilmasters.ncom
  • www.oilmasters;com
  • www.oilmasters;.com
  • www.oilmasters.;com
  • www.oilmasterslcom
  • www.oilmastersl.com
  • www.oilmasters.lcom
  • www.oilmasters com
  • www.oilmasters .com
  • www.oilmasters. com
  • www.oilmasters,com
  • www.oilmasters,.com
  • www.oilmasters.,com
  • www.oilmastersmcom
  • www.oilmastersm.com
  • www.oilmasters.mcom
  • www.oilmasters.ccom
  • www.oilmasters.om
  • www.oilmasters.ccom
  • www.oilmasters.xom
  • www.oilmasters.xcom
  • www.oilmasters.cxom
  • www.oilmasters.fom
  • www.oilmasters.fcom
  • www.oilmasters.cfom
  • www.oilmasters.vom
  • www.oilmasters.vcom
  • www.oilmasters.cvom
  • www.oilmasters.dom
  • www.oilmasters.dcom
  • www.oilmasters.cdom
  • www.oilmastersc.om
  • www.oilmasters.cm
  • www.oilmasters.coom
  • www.oilmasters.cpm
  • www.oilmasters.cpom
  • www.oilmasters.copm
  • www.oilmasters.cim
  • www.oilmasters.ciom
  • www.oilmasters.coim
  • www.oilmasters.ckm
  • www.oilmasters.ckom
  • www.oilmasters.cokm
  • www.oilmasters.clm
  • www.oilmasters.clom
  • www.oilmasters.colm
  • www.oilmasters.c0m
  • www.oilmasters.c0om
  • www.oilmasters.co0m
  • www.oilmasters.c:m
  • www.oilmasters.c:om
  • www.oilmasters.co:m
  • www.oilmasters.c9m
  • www.oilmasters.c9om
  • www.oilmasters.co9m
  • www.oilmasters.ocm
  • www.oilmasters.co
  • oilmasters.co.ukm
  • www.oilmasters.con
  • www.oilmasters.conm
  • oilmasters.co.ukn
  • www.oilmasters.col
  • www.oilmasters.colm
  • oilmasters.co.ukl
  • www.oilmasters.co
  • www.oilmasters.co m
  • oilmasters.co.uk
  • www.oilmasters.cok
  • www.oilmasters.cokm
  • oilmasters.co.ukk
  • www.oilmasters.co,
  • www.oilmasters.co,m
  • oilmasters.co.uk,
  • www.oilmasters.coj
  • www.oilmasters.cojm
  • oilmasters.co.ukj
  • www.oilmasters.cmo
Show All Mistakes Hide All Mistakes