harrybailey.com Report : Visit Site


  • Ranking Alexa Global: # 1,703,464

    Server:Apache...

    The main IP address: 77.72.5.174,Your server United Kingdom,Torquay ISP:Krystal Solutions LLP  TLD:com CountryCode:GB

    The description :a collection of technical support covering php, mobile development, javascript and other geeky stuff....

    This report updates in 25-Jun-2018

Created Date:2003-02-25
Changed Date:2016-02-04

Technical data of the harrybailey.com


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host harrybailey.com. Currently, hosted in United Kingdom and its service provider is Krystal Solutions LLP .

Latitude: 50.463840484619
Longitude: -3.5143399238586
Country: United Kingdom (GB)
City: Torquay
Region: England
ISP: Krystal Solutions LLP

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.

Transfer-Encoding:chunked
Server:Apache
Connection:close
Link:; rel="https://api.w.org/"
Date:Mon, 25 Jun 2018 09:40:32 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:dns1.registrar-servers.com. hostmaster.registrar-servers.com. 2018051804 43200 3600 604800 3601
ns:dns1.registrar-servers.com.
dns2.registrar-servers.com.
ipv4:IP:77.72.5.174
ASN:12488
OWNER:KRYSTAL, GR
Country:GB
mx:MX preference = 0, mail exchanger = harrybailey.com.

HtmlToText

harry bailey latest posts. security of whm backups to an aws s3 bucket when you give your web hosting manager (whm) the ability to send a copy of your backup to amazon’s aws s3 service, you have to hand it a key and secret that give it that permission. the worst option is to hand over a secret and key related to your own log in. the best is to: create a policy which only gives access to a single bucket only allows the least access required for the task only allows connections from trusted ip addresses create a group to connect the policy to create a user (for the whm) to connect to the group for validation of connection to s3 whm currently requires the ability to write objects, list all objects in a bucket, delete objects. now for some this is frustratingly more than you want to hand over. in theory whm could make do with just the ability to write to the bucket, but at the moment we have to make all those abilities available. luckily, the fact we’re also limiting by ip and then secret and key—which whm encrypts when you submit them—should make it highly unlikely anybody else will be able to abuse the ability to delete objects. here is the example policy that i have in place. feel free to copy, personalise and use: { "version": "2012-10-17", "statement": [ { "sid": "whmbackupaccess", "effect": "allow", "action": [ "s3:putobject", "s3:getobject", "s3:listbucket", "s3:deleteobject" ], "resource": [ "arn:aws:s3:::your_bucket_name", "arn:aws:s3:::your_bucket_name/*" ], "condition": { "ipaddress": { "aws:sourceip": "your_server_ip/32" } } } ] } if you’re in need of help putting this all together, let me know and i might expand this post to include how to do the setup inside whm and the aws console. posted by harry at 10:28 am on march 5th, 2018. no comments... » categories: amazon web services (aws) , s3 , security , whm . .htaccess redirects based on date and time a useful trick for implementing maintenance windows and redirects without having to use a php or similar script is to check date and time in .htaccess files or use it to build a redirect url. date and time values in .htaccess come in the form %{time_xxxx} where xxxx is the type of date or time you want. so if you want to redirect a generic url to one which contains today’s date, you might use: rewriterule ^posts/today$ /posts/%{time_year}-%{time_mon}-%{time_day} that would result in /posts/today being redirected to something like /posts/2015-08-27 if you wanted redirect a page after a date (and time) is passed you could use something like the following, where if the date and time is passed 9am on 27th august 2015 the redirect will happen. we use a simple number comparison of turning the date into an integer and then comparing it. rewritecond %{time_year}%{time_mon}%{time_day}%{time_hour} >2015082709 rewriterule ^$ /destination/url.html [r=301,l] the following would only redirect until a specific time (10.22am on 27th august 2015) rewritecond %{time_year}%{time_mon}%{time_day}%{time_hour}%{time_min} <201508271022 rewriterule ^$ /destination/url.html [r=301,l] the following would only redirect between two specific dates (20th july 2015 and 27th august 2015) rewritecond %{time_year}%{time_mon}%{time_day} <20150828 rewritecond %{time_year}%{time_mon}%{time_day} >20150719 rewriterule ^$ /destination/url.html [r=301,l] the options you have for %{time_xxxx} values are: time_year // current four-digit year time_mon // current month time_day // current day of month time_hour // current hour (24 hour clock) of day time_min // current minute of hour time_sec // current second of minute time_wday // current week-day time // a formatted string representing the date and time down to seconds. e.g. 20150827112234 posted by harry at 1:03 pm on august 27th, 2015. 4 comments... » categories: apache . mysql roughly random string generation for updating rows ever wanted to inject hashes into existing rows of a mysql database? the code below allows you to generate a different string for each row affected by the update and choose the random string’s length from 1 to 32 character. i’m aware it’s not the most random of generators but for url hashes etc, it works well. be sure to then check for duplicates, which are possible! change 20 to a length between 1 and 32. update the where condition to suit your needs update table_name set column_name = ( select substring(md5(rand()), -20) ) where condition_column = 1; posted by harry at 12:09 pm on august 19th, 2015. no comments... » categories: sql . chrome browser masking php errors i thought i was going mad for a while, but it turns out that sometimes spotting php error messages which come back from the server to the google chrome browser can be really tough. if the error is inside an html element or attribute of an html element you’re going to struggle to see it in google chrome… <a href=" <?= $model -> fakefunction ( ) ; ?> ">link</a> <a href="<?= $model->fakefunction(); ?>">link</a> if $model doesn’t have a method called fakefunction then php will spit a “fatal error: call to a member function” error. the page that is displayed in chrome won’t show you the error and viewing the source will also hide it from you. even the elements tab in chrome developer tools won’t show it. there only way i’ve been able to find the error content is to look at the network tab in chrome and view the raw response of the document back from the server. a few hours lost on this one! posted by harry at 12:04 pm on april 5th, 2013. categories: php . add global twitter bootstrap modal listeners if you’re ever browsed the twitter bootstrap javascript documentation then you’ll know that the modal parts of the bootstrap library require some javascript to show and hide them. part of the javascript is related to events which you can attach listeners to so you know when your modal shown and hidden. what they don’t tell you is that you can add a single global (or semi global if you want) listener to all modal events which will fire when any modal is shown or hidden. $ ( 'body' ) . on ( 'shown' , '.modal' , function ( ) { console. log ( 'we have shown a modal' ) ; } ) ; $('body').on('shown', '.modal', function () { console.log('we have shown a modal'); }); for example the above will console log “we have shown a modal” when any modal is shown. you can switch the shown event to be show, shown, hide or hidden. posted by harry at 8:49 pm on december 8th, 2012. categories: javascript , twitter . « back... archives march 2018 august 2015 april 2013 december 2012 september 2012 august 2012 july 2012 may 2012 february 2012 november 2011 september 2011 august 2011 july 2011 june 2011 april 2011 december 2010 november 2010 september 2010 july 2010 june 2010 may 2010 april 2010 march 2010 february 2010 january 2010 december 2009 october 2009 september 2009 july 2009 june 2009 may 2009 april 2009 march 2009 february 2009 january 2009 december 2008 november 2008 categories amazon web services (aws) (1) s3 (1) security (1) apache (4) general (2) git (1) javascript (18) jquery (11) mac (30) apps (18) os x 10.4 (4) os x 10.5 (2) os x 10.7 (2) mysql (5) php (24) methods (3) yii (7) sql (5) the web (38) cookies (1) cpanel (2) css (5) facebook (5) google (4) ifttt (1) twitter (4) whm (1) wordpress (1) worldpay (1) uncategorized (2) harry bailey is powered by wordpress and styled by infimum . valid xhtml and valid css . log in .

URL analysis for harrybailey.com


https://harrybailey.com/2010/04/
https://harrybailey.com/category/the-web/cpanel/
https://harrybailey.com/category/the-web/whm/
https://harrybailey.com/category/the-web/wordpress/
https://harrybailey.com/category/the-web/twitter/
https://harrybailey.com/category/uncategorized/
https://harrybailey.com/2009/03/
https://harrybailey.com/2011/08/
https://harrybailey.com/2018/03/security-of-whm-backups-to-an-aws-s3-bucket/
https://harrybailey.com/category/general/
https://harrybailey.com/2012/09/
https://harrybailey.com/2009/05/
https://harrybailey.com/2012/02/
https://harrybailey.com/2009/09/
https://harrybailey.com/category/javascript/

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: HARRYBAILEY.COM
Registry Domain ID: 95251183_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.enom.com
Registrar URL: http://www.enom.com
Updated Date: 2016-02-04T20:08:33Z
Creation Date: 2003-02-25T13:35:37Z
Registry Expiry Date: 2018-02-25T13:35:37Z
Registrar: eNom, Inc.
Registrar IANA ID: 48
Registrar Abuse Contact Email:
Registrar Abuse Contact Phone:
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: NS1.MEMSET.COM
Name Server: NS2.MEMSET.COM
Name Server: NS3.MEMSET.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2017-09-17T05:59:51Z <<<

For more information on Whois status codes, please visit https://icann.org/epp

NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.

TERMS OF USE: You are not authorized to access or query our Whois
database through the use of electronic processes that are high-volume and
automated except as reasonably necessary to register domain names or
modify existing registrations; the Data in VeriSign Global Registry
Services' ("VeriSign") Whois database is provided by VeriSign for
information purposes only, and to assist persons in obtaining information
about or related to a domain name registration record. VeriSign does not
guarantee its accuracy. By submitting a Whois query, you agree to abide
by the following terms of use: You agree that you may use this Data only
for lawful purposes and that under no circumstances will you use this Data
to: (1) allow, enable, or otherwise support the transmission of mass
unsolicited, commercial advertising or solicitations via e-mail, telephone,
or facsimile; or (2) enable high volume, automated, electronic processes
that apply to VeriSign (or its computer systems). The compilation,
repackaging, dissemination or other use of this Data is expressly
prohibited without the prior written consent of VeriSign. You agree not to
use electronic processes that are automated and high-volume to access or
query the Whois database except as reasonably necessary to register
domain names or modify existing registrations. VeriSign reserves the right
to restrict your access to the Whois database in its sole discretion to ensure
operational stability. VeriSign may restrict or terminate your access to the
Whois database for failure to abide by these terms of use. VeriSign
reserves the right to modify these terms at any time.

The Registry database contains ONLY .COM, .NET, .EDU domains and
Registrars.

  REGISTRAR eNom, Inc.

SERVERS

  SERVER com.whois-servers.net

  ARGS domain =harrybailey.com

  PORT 43

  TYPE domain

DOMAIN

  NAME harrybailey.com

  CHANGED 2016-02-04

  CREATED 2003-02-25

STATUS
clientTransferProhibited https://icann.org/epp#clientTransferProhibited

NSERVER

  NS1.MEMSET.COM 89.200.136.74

  NS2.MEMSET.COM 78.31.107.87

  NS3.MEMSET.COM 31.222.188.99

  REGISTERED yes

Go to top

Mistakes


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

  • www.uharrybailey.com
  • www.7harrybailey.com
  • www.hharrybailey.com
  • www.kharrybailey.com
  • www.jharrybailey.com
  • www.iharrybailey.com
  • www.8harrybailey.com
  • www.yharrybailey.com
  • www.harrybaileyebc.com
  • www.harrybaileyebc.com
  • www.harrybailey3bc.com
  • www.harrybaileywbc.com
  • www.harrybaileysbc.com
  • www.harrybailey#bc.com
  • www.harrybaileydbc.com
  • www.harrybaileyfbc.com
  • www.harrybailey&bc.com
  • www.harrybaileyrbc.com
  • www.urlw4ebc.com
  • www.harrybailey4bc.com
  • www.harrybaileyc.com
  • www.harrybaileybc.com
  • www.harrybaileyvc.com
  • www.harrybaileyvbc.com
  • www.harrybaileyvc.com
  • www.harrybailey c.com
  • www.harrybailey bc.com
  • www.harrybailey c.com
  • www.harrybaileygc.com
  • www.harrybaileygbc.com
  • www.harrybaileygc.com
  • www.harrybaileyjc.com
  • www.harrybaileyjbc.com
  • www.harrybaileyjc.com
  • www.harrybaileync.com
  • www.harrybaileynbc.com
  • www.harrybaileync.com
  • www.harrybaileyhc.com
  • www.harrybaileyhbc.com
  • www.harrybaileyhc.com
  • www.harrybailey.com
  • www.harrybaileyc.com
  • www.harrybaileyx.com
  • www.harrybaileyxc.com
  • www.harrybaileyx.com
  • www.harrybaileyf.com
  • www.harrybaileyfc.com
  • www.harrybaileyf.com
  • www.harrybaileyv.com
  • www.harrybaileyvc.com
  • www.harrybaileyv.com
  • www.harrybaileyd.com
  • www.harrybaileydc.com
  • www.harrybaileyd.com
  • www.harrybaileycb.com
  • www.harrybaileycom
  • www.harrybailey..com
  • www.harrybailey/com
  • www.harrybailey/.com
  • www.harrybailey./com
  • www.harrybaileyncom
  • www.harrybaileyn.com
  • www.harrybailey.ncom
  • www.harrybailey;com
  • www.harrybailey;.com
  • www.harrybailey.;com
  • www.harrybaileylcom
  • www.harrybaileyl.com
  • www.harrybailey.lcom
  • www.harrybailey com
  • www.harrybailey .com
  • www.harrybailey. com
  • www.harrybailey,com
  • www.harrybailey,.com
  • www.harrybailey.,com
  • www.harrybaileymcom
  • www.harrybaileym.com
  • www.harrybailey.mcom
  • www.harrybailey.ccom
  • www.harrybailey.om
  • www.harrybailey.ccom
  • www.harrybailey.xom
  • www.harrybailey.xcom
  • www.harrybailey.cxom
  • www.harrybailey.fom
  • www.harrybailey.fcom
  • www.harrybailey.cfom
  • www.harrybailey.vom
  • www.harrybailey.vcom
  • www.harrybailey.cvom
  • www.harrybailey.dom
  • www.harrybailey.dcom
  • www.harrybailey.cdom
  • www.harrybaileyc.om
  • www.harrybailey.cm
  • www.harrybailey.coom
  • www.harrybailey.cpm
  • www.harrybailey.cpom
  • www.harrybailey.copm
  • www.harrybailey.cim
  • www.harrybailey.ciom
  • www.harrybailey.coim
  • www.harrybailey.ckm
  • www.harrybailey.ckom
  • www.harrybailey.cokm
  • www.harrybailey.clm
  • www.harrybailey.clom
  • www.harrybailey.colm
  • www.harrybailey.c0m
  • www.harrybailey.c0om
  • www.harrybailey.co0m
  • www.harrybailey.c:m
  • www.harrybailey.c:om
  • www.harrybailey.co:m
  • www.harrybailey.c9m
  • www.harrybailey.c9om
  • www.harrybailey.co9m
  • www.harrybailey.ocm
  • www.harrybailey.co
  • harrybailey.comm
  • www.harrybailey.con
  • www.harrybailey.conm
  • harrybailey.comn
  • www.harrybailey.col
  • www.harrybailey.colm
  • harrybailey.coml
  • www.harrybailey.co
  • www.harrybailey.co m
  • harrybailey.com
  • www.harrybailey.cok
  • www.harrybailey.cokm
  • harrybailey.comk
  • www.harrybailey.co,
  • www.harrybailey.co,m
  • harrybailey.com,
  • www.harrybailey.coj
  • www.harrybailey.cojm
  • harrybailey.comj
  • www.harrybailey.cmo
Show All Mistakes Hide All Mistakes