bloke.org Report : Visit Site


  • Ranking Alexa Global: # 1,484,554

    Server:Apache...

    The main IP address: 46.101.91.136,Your server Netherlands,Amsterdam ISP:Digital Ocean Inc.  TLD:org CountryCode:NL

    The description :| kieran barnes-lucas - independent php, wordpress, woocommerce & cakephp programmer...

    This report updates in 03-Jul-2018

Technical data of the bloke.org


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host bloke.org. Currently, hosted in Netherlands and its service provider is Digital Ocean Inc. .

Latitude: 52.374031066895
Longitude: 4.8896899223328
Country: Netherlands (NL)
City: Amsterdam
Region: Noord-Holland
ISP: Digital Ocean Inc.

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.

Upgrade:h2,h2c
Transfer-Encoding:chunked
Strict-Transport-Security:max-age=16070400; includeSubDomains
Server:Apache
Connection:Upgrade, close
Link:; rel="https://api.w.org/"
Date:Tue, 03 Jul 2018 07:17:39 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:dns1.name-services.com. info.name-services.com. 1523448660 172800 900 1814400 3600
txt:"v=spf1 include:spf.protection.outlook.com -all"
"MS=ms83184386"
ns:dns5.name-services.com.
dns1.name-services.com.
dns4.name-services.com.
dns2.name-services.com.
dns3.name-services.com.
ipv4:IP:46.101.91.136
ASN:14061
OWNER:DIGITALOCEAN-ASN - DigitalOcean, LLC, US
Country:NL
mx:MX preference = 10, mail exchanger = bloke-org.mail.protection.outlook.com.

HtmlToText

kieran barnes-lucas | kieran barnes-lucas - independent php, wordpress, woocommerce & cakephp programmer skip to content kieran barnes-lucas kieran barnes-lucas – independent php, wordpress, woocommerce & cakephp programmer menu home about php development wordpress wordpress woocommerce cakephp development cubecart ecommerce php development kb modified wordpress recruitment agencies need help? contact featured welcome hello! i am a php programmer with 15 years experience. i specialise in wordpress (& woocommerce), cakephp, cubecart along with all things php. this is my blog – for programmers; a valuable resource of programming issues and fixes. for employers; an insight into my programming skills and clients. author kieran barnes posted on 15th october 2012 19th december 2013 categories general leave a comment on welcome enable general mysql log without a restart here’s a quick and easy way to enable the mysql general log, to log all queries sent to the database. great for debugging. open up a mysql console and input the following. change the log file location to suit. continue reading “enable general mysql log without a restart” author kieran barnes posted on 3rd august 2014 categories mysql leave a comment on enable general mysql log without a restart auto generating a woocommerce sku stock code here is a little bit of framework code that will automatically generate an sku code in woocommerce. it takes the selected product category and post id to generate a unique stock code for the product being added. // auto generates a stock code add_action ( 'save_post' , 'save_woocommerce_auto_sku' ) ; function save_woocommerce_auto_sku ( $post_id ) { if ( $_server [ 'request_method' ] == 'post' ) { if ( $_request [ 'tax_input' ] ) { $term = get_term_by ( 'id' , $_request [ 'tax_input' ] [ 'product_cat' ] [ 1 ] , 'product_cat' ) ; if ( $term ) { $acronym = "" ; $name = explode ( ' ' , ( string ) $term -& gt ; name ) ; foreach ( $name as $w ) { $acronym .= $w [ 0 ] ; } $sku = strtoupper ( $acronym ) . str_pad ( $post_id , 4 ) ; } update_post_meta ( $post_id , '_sku' , $sku ) ; } } } author kieran barnes posted on 7th july 2014 3rd august 2014 categories woocommerce , wordpress 3 comments on auto generating a woocommerce sku stock code adding woocommerce cart items link to wordpress menus here’s a quick function to create a nav menu item that contains cart items and a cart link. useful to blend in woocommerce features with an existing menu and design. function add_last_nav_item ( $items ) { global $woocommerce ; return $items .= '<li class="menu-item-cart-item">cart: <a class="cart-contents" href="' . $woocommerce -& gt ; cart -& gt ; get_cart_url ( ) . '" title="view your shopping cart">' . sprintf ( _n ( '%d item' , '%d items' , $woocommerce -& gt ; cart -& gt ; cart_contents_count , 'woothemes' ) , $woocommerce -& gt ; cart -& gt ; cart_contents_count ) . ' - ' . $woocommerce -& gt ; cart -& gt ; get_cart_total ( ) . '</a></li>' ; } add_filter ( 'wp_nav_menu_items' , 'add_last_nav_item' ) ; just edit the $items variable to suit. author kieran barnes posted on 27th june 2014 27th june 2014 categories snippets , woocommerce , wordpress leave a comment on adding woocommerce cart items link to wordpress menus modifying woocommerce product sort options you can easily modify the woocommerce product sort options to remove any unnecessary sort options for your woocommerce store. simply add this to your theme’s functions.php and customise to suit your needs. function custom_woocommerce_catalog_orderby ( $sortby ) { unset ( $sortby [ 'rating' ] ) ; unset ( $sortby [ 'price' ] ) ; unset ( $sortby [ 'desc' ] ) ; return $sortby ; } add_filter ( 'woocommerce_catalog_orderby' , 'custom_woocommerce_catalog_orderby' ) ; you can change the following options; menu_order – default sorting popularity – sort by popularity rating – sort by average rating date – sort by newness price – sort by price: low to high price-desc – sort by price: high to low author kieran barnes posted on 27th may 2014 27th june 2014 categories woocommerce , wordpress leave a comment on modifying woocommerce product sort options auto match 404 strings and redirect a recent client had a product list built from posts and pages. i transformed it into a woocommerce store. google had indexed their inventory as posts and pages. we needed to rewrite these automatically to the new style listing of woocommerce’s products custom post type. i wrote a small 404 handler that would search woocommerce products for the requested page slug (these always matched). the following code would be in your theme’s 404.php page. $parsed_url = explode ( '-' , basename ( $_server [ 'redirect_url' ] ) ) ; if ( isset ( $parsed_url [ 0 ] ) ) { $parsed_url [ 0 ] = sanitize_title ( $parsed_url [ 0 ] ) ; $search_posts = get_posts ( array ( 'post_type' =& gt ; 'products' , 'suppress_filters' =& gt ; true , 'posts_per_page' =& gt ; '1' , 's' =& gt ; $parsed_url [ 0 ] ) ) ; if ( $search_posts ) { wp_safe_redirect ( get_permalink ( $search_posts [ 0 ] -& gt ; id ) , 301 ) ; exit ( ) ; } } author kieran barnes posted on 20th april 2014 27th june 2014 categories woocommerce , wordpress leave a comment on auto match 404 strings and redirect show saving on woocommerce sales items woocommerce will automatically add sales css to items on sale and show you the regular price, however it doesn’t show you the total saved. here’s how to show the saving. add the following to your theme’s functions.php . add_filter ( 'woocommerce_sale_price_html' , 'woocommerce_custom_sales_price' , 10 , 2 ) ; function woocommerce_custom_sales_price ( $price , $product ) { $percentage = round ( $product -& gt ; regular_price - $product -& gt ; sale_price , 2 ) ; return $price . sprintf ( __ ( ' <br /><span class="price_save">save £%s' , 'woocommerce' ) , $percentage . '</span>' ) ; } add_filter ( 'woocommerce_variable_sale_price_html' , 'woocommerce_custom_variable_sales_price' , 10 , 2 ) ; function woocommerce_custom_variable_sales_price ( $price , $variable ) { $reg_price = get_post_meta ( $variable -& gt ; children [ 0 ] , '_regular_price' , true ) ; $sale_price = get_post_meta ( $variable -& gt ; children [ 0 ] , '_sale_price' , true ) ; $percentage = round ( $reg_price - $sale_price , 2 ) ; return $price . sprintf ( __ ( ' <br /><span class="price_save">save £%s' , 'woocommerce' ) , $percentage . '</span>' ) ; } author kieran barnes posted on 6th march 2014 27th june 2014 categories woocommerce , wordpress 6 comments on show saving on woocommerce sales items loading wordpress contact form 7 javascript and styling only when necessary the contact form 7 plugin seems to be the best available plugin of it’s kind. robust, flexible and infinitely customisable. it appears on most of my wordpress installs along with flamingo and sometimes really simple captcha . unfortunately, one annoyance is that in it’s default settings, contact form 7 loads its javascript and css stylesheet on every page. here’s how i fixed this so it only loads when necessary. continue reading “loading wordpress contact form 7 javascript and styling only when necessary” author kieran barnes posted on 19th february 2014 17th february 2014 categories wordpress leave a comment on loading wordpress contact form 7 javascript and styling only when necessary [snippet] removing “sort by” in woocommerce here’s how to remove the “sort by” dropdown/select box in woocommerce category pages. add the following to your functions.php file. remove_action ( 'woocommerce_before_shop_loop' , 'woocommerce_catalog_ordering' , 30 ) ; author kieran barnes posted on 18th february 2014 17th february 2014 categories woocommerce , wordpress 1 comment on [snippet] removing “sort by”

URL analysis for bloke.org


https://bloke.org/category/voip/
https://bloke.org/mysql/enable-general-mysql-log-without-restart-2/#more-5242
https://bloke.org/category/cubecart/
https://bloke.org/about/
https://bloke.org/mysql/enable-general-mysql-log-without-restart-2/#respond
https://bloke.org/category/apache/
https://bloke.org/general/hello/#respond
https://bloke.org/category/linux/centos/
https://bloke.org/wordpress/show-saving-woocommerce-sales-items/
https://bloke.org/category/cakephp/
https://bloke.org/category/mysql/
https://bloke.org/category/reviews/
https://bloke.org/general/hello/
https://bloke.org/category/ms-sql/
https://bloke.org/category/wordpress/

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;

WHOIS LIMIT EXCEEDED - SEE WWW.PIR.ORG/WHOIS FOR DETAILS

  REFERRER http://www.pir.org/

  REGISTRAR Public Interest Registry

SERVERS

  SERVER org.whois-servers.net

  ARGS bloke.org

  PORT 43

  TYPE domain

  REGISTERED unknown

DOMAIN

  NAME bloke.org

NSERVER

  DNS3.NAME-SERVICES.COM 162.88.61.39

  DNS1.NAME-SERVICES.COM 162.88.61.23

  DNS4.NAME-SERVICES.COM 162.88.60.39

  DNS5.NAME-SERVICES.COM 162.88.61.41

  DNS2.NAME-SERVICES.COM 162.88.60.23

Go to top

Mistakes


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

  • www.ubloke.com
  • www.7bloke.com
  • www.hbloke.com
  • www.kbloke.com
  • www.jbloke.com
  • www.ibloke.com
  • www.8bloke.com
  • www.ybloke.com
  • www.blokeebc.com
  • www.blokeebc.com
  • www.bloke3bc.com
  • www.blokewbc.com
  • www.blokesbc.com
  • www.bloke#bc.com
  • www.blokedbc.com
  • www.blokefbc.com
  • www.bloke&bc.com
  • www.blokerbc.com
  • www.urlw4ebc.com
  • www.bloke4bc.com
  • www.blokec.com
  • www.blokebc.com
  • www.blokevc.com
  • www.blokevbc.com
  • www.blokevc.com
  • www.bloke c.com
  • www.bloke bc.com
  • www.bloke c.com
  • www.blokegc.com
  • www.blokegbc.com
  • www.blokegc.com
  • www.blokejc.com
  • www.blokejbc.com
  • www.blokejc.com
  • www.blokenc.com
  • www.blokenbc.com
  • www.blokenc.com
  • www.blokehc.com
  • www.blokehbc.com
  • www.blokehc.com
  • www.bloke.com
  • www.blokec.com
  • www.blokex.com
  • www.blokexc.com
  • www.blokex.com
  • www.blokef.com
  • www.blokefc.com
  • www.blokef.com
  • www.blokev.com
  • www.blokevc.com
  • www.blokev.com
  • www.bloked.com
  • www.blokedc.com
  • www.bloked.com
  • www.blokecb.com
  • www.blokecom
  • www.bloke..com
  • www.bloke/com
  • www.bloke/.com
  • www.bloke./com
  • www.blokencom
  • www.bloken.com
  • www.bloke.ncom
  • www.bloke;com
  • www.bloke;.com
  • www.bloke.;com
  • www.blokelcom
  • www.blokel.com
  • www.bloke.lcom
  • www.bloke com
  • www.bloke .com
  • www.bloke. com
  • www.bloke,com
  • www.bloke,.com
  • www.bloke.,com
  • www.blokemcom
  • www.blokem.com
  • www.bloke.mcom
  • www.bloke.ccom
  • www.bloke.om
  • www.bloke.ccom
  • www.bloke.xom
  • www.bloke.xcom
  • www.bloke.cxom
  • www.bloke.fom
  • www.bloke.fcom
  • www.bloke.cfom
  • www.bloke.vom
  • www.bloke.vcom
  • www.bloke.cvom
  • www.bloke.dom
  • www.bloke.dcom
  • www.bloke.cdom
  • www.blokec.om
  • www.bloke.cm
  • www.bloke.coom
  • www.bloke.cpm
  • www.bloke.cpom
  • www.bloke.copm
  • www.bloke.cim
  • www.bloke.ciom
  • www.bloke.coim
  • www.bloke.ckm
  • www.bloke.ckom
  • www.bloke.cokm
  • www.bloke.clm
  • www.bloke.clom
  • www.bloke.colm
  • www.bloke.c0m
  • www.bloke.c0om
  • www.bloke.co0m
  • www.bloke.c:m
  • www.bloke.c:om
  • www.bloke.co:m
  • www.bloke.c9m
  • www.bloke.c9om
  • www.bloke.co9m
  • www.bloke.ocm
  • www.bloke.co
  • bloke.orgm
  • www.bloke.con
  • www.bloke.conm
  • bloke.orgn
  • www.bloke.col
  • www.bloke.colm
  • bloke.orgl
  • www.bloke.co
  • www.bloke.co m
  • bloke.org
  • www.bloke.cok
  • www.bloke.cokm
  • bloke.orgk
  • www.bloke.co,
  • www.bloke.co,m
  • bloke.org,
  • www.bloke.coj
  • www.bloke.cojm
  • bloke.orgj
  • www.bloke.cmo
Show All Mistakes Hide All Mistakes