stevendobbelaere.be Report : Visit Site


  • Server:Apache/2...
    X-Powered-By:PHP/5.2.14

    The main IP address: 88.151.243.154,Your server Belgium,Gent ISP:Openminds bvba  TLD:be CountryCode:BE

    The description :php webdeveloper and frontend developer home photography contact blog apache git & capistrano html & css jquery & javascript mac and apple stuff mysql other php web development wordpress c...

    This report updates in 02-Sep-2018

Created Date:Tue Feb 17 2009

Technical data of the stevendobbelaere.be


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host stevendobbelaere.be. Currently, hosted in Belgium and its service provider is Openminds bvba .

Latitude: 51.049999237061
Longitude: 3.7166700363159
Country: Belgium (BE)
City: Gent
Region: Oost-Vlaanderen
ISP: Openminds bvba

HTTP Header Analysis


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

Content-Length:14751
Expires:Sun, 02 Sep 2018 07:00:10 GMT
X-Powered-By:PHP/5.2.14
Accept-Ranges:none
Content-Encoding:gzip
Vary:Accept-Encoding,User-Agent
Keep-Alive:timeout=1, max=100
Server:Apache/2
Connection:Keep-Alive
Link:; rel="https://api.w.org/", ; rel=shortlink
Cache-Control:max-age=0, public
Date:Sun, 02 Sep 2018 07:00:10 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:ns1.openminds.be. root.stevendobbelaere.be. 2013031500 14400 3600 1209600 86400
ns:ns1.openminds.be.
ns3.om-powered.net.
ns2.openminds.be.
ipv4:IP:88.151.243.154
ASN:34762
OWNER:COMBELL-AS, BE
Country:BE
mx:MX preference = 30, mail exchanger = ASPMX2.GOOGLEMAIL.COM.
MX preference = 30, mail exchanger = ASPMX5.GOOGLEMAIL.COM.
MX preference = 20, mail exchanger = ALT1.ASPMX.L.GOOGLE.COM.
MX preference = 10, mail exchanger = ASPMX.L.GOOGLE.COM.
MX preference = 20, mail exchanger = ALT2.ASPMX.L.GOOGLE.COM.
MX preference = 30, mail exchanger = ASPMX3.GOOGLEMAIL.COM.
MX preference = 30, mail exchanger = ASPMX4.GOOGLEMAIL.COM.

HtmlToText

php webdeveloper and frontend developer home photography contact blog apache git & capistrano html & css jquery & javascript mac and apple stuff mysql other php web development wordpress categories... apache git & capistrano html & css jquery & javascript mac and apple stuff mysql other php web development wordpress order custom post type by custom field with types plugin in wordpress category : php , wordpress · no comments · by steven dobbelaere oct 30th, 2015 first you need to choose which post type you want to list and to choose a custom field to filter by you use the “meta_key” key in the array. the key starts with “wpcf-” and afterwards the name of the custom field you want to use. $posts = query_posts( array( 'post_type' => "event", 'posts_per_page' => 40, 'meta_key' => 'wpcf-start-date', // load up the event_date meta 'orderby' => 'meta_value', 'order' => 'asc', ) ); 1 2 3 4 5 6 7 8 9 $posts = query_posts ( array ( 'post_type' = > "event" , 'posts_per_page' = > 40 , 'meta_key' = > 'wpcf-start-date' , // load up the event_date meta 'orderby' = > 'meta_value' , 'order' = > 'asc' , ) ) ; read more... custom list style with font awesome category : html & css · no comments · by steven dobbelaere jun 18th, 2015 i frequently use font awesome when making website to easily add icons to buttons or within the pages. you can also use font awesome to make a custom list style. this is a useful website to search for font awesome icons -> http://faicons.com/ and get the unicode to change the icon. you can change the type of icon in the li:before selector…. read more... how to put inline javascript in the footer of your page with wordpress category : web development , php , wordpress · no comments · by steven dobbelaere jun 18th, 2015 you can do this by adding this code to your template file. this will add a hook. your javascript code will now be placed in the footer of your page (or where the wp_footer() function is called). <?php function footer_script(){ ?> <script> jquery(document).ready(function(){ //put your js code here }) </script> <?php } add_action('wp_footer', 'footer_script'); ?> 1 2 3 4 5 6 7 8 9 10 <?php function footer_script ( ) { ?> <script> jquery ( document ) . ready ( function ( ) { //put your js code here } ) </script> <?php } add_action ( 'wp_footer' , 'footer_script' ) ; ?> read more... scrollto element with an id selector using jquery category : jquery & javascript , html & css · no comments · by steven dobbelaere feb 5th, 2015 for example, if i have a button with an id “btn” and a form with the id “form” and i want to scrollto the form when i click on the button html: <p><a href="" id="btn">go to form</a></p> <form id="form"> </form> 1 2 3 4 5 6 <p> <a href = "" id = "btn" > go to form </a> </p> <form id = "form" > </form> jquery: $(document).ready(function(){ $("#btn").click(function(e){ e.preventdefault(); $('html, body').animate({ scrolltop: $("#form").offset().top }, 1000); }) }) 1 2 3 4 5 6 7 8 $ ( document ) . ready ( function ( ) { $ ( "#btn" ) . click ( function ( e ) { e . preventdefault ( ) ; $ ( 'html, body' ) . animate ( { scrolltop : $ ( "#form" ) . offset ( ) . top } , 1000 ) ; } ) } ) read more... vagrant up errors on install on mac os x category : php , mysql , mac and apple stuff · no comments · by steven dobbelaere jan 23rd, 2014 instead of mamp i use vagrant to set up my virtualhosts locally. that way you can emulate your webserver’s setup. to configure my vagrant virtual machine i use puphpet. you need to have virtualbox installed for this. after downloading the puphpet configuration manifest you need to start up the virtual box. you do this by executing this command: vagrant up 1 vagrant up sometimes i… read more... tabindex problems with gravity forms in wordpress category : php , wordpress · no comments · by steven dobbelaere sep 21st, 2013 sometimes there are problems with the tabindex when you use the gravity forms plugin in wordpress. you can fix this by adding this to your theme’s functions.php file //############################################################################### // fix gravity form tabindex conflicts //############################################################################### add_filter("gform_tabindex", "gform_tabindexer"); function gform_tabindexer() { $starting_index = 1000; // if you need a higher tabindex, update this number return gfcommon::$tab_index >= $starting_index ? gfcommon::$tab_index : $starting_index; } 1 2 3 4 5 6 7 8 //############################################################################### // fix gravity form tabindex conflicts //############################################################################### add_filter ( "gform_tabindex" , "gform_tabindexer" ) ; function gform_tabindexer ( ) { $starting_index = 1000 ; // if you need a higher tabindex, update this number return gfcommon:: $tab_index >= $starting_index ? gfcommon:: $tab_index : $starting_index ; } this will set the start index from gravity forms to a higher number. read more... change the amount of tags in tagcloud in wordpress category : php , wordpress · no comments · by steven dobbelaere sep 21st, 2013 add this piece of code to your theme’s function.php file. add_filter('widget_tag_cloud_args','set_number_tags'); function set_number_tags($args) { $args = array('number' => 20); return $args; } 1 2 3 4 5 add_filter ( 'widget_tag_cloud_args' , 'set_number_tags' ) ; function set_number_tags ( $args ) { $args = array ( 'number' = > 20 ) ; return $args ; } set the number of the amount of tags you want to display on your page. or you can just use the parameters for the wp_tag_cloud function. <?php $args = array( 'smallest' => 8, 'largest' => 22, 'unit' => 'pt', 'number' => 45, 'format' => 'flat', 'separator' => \\"\n\\", 'orderby' => 'name', 'order' => 'asc', 'exclude' => null, 'include' => null, 'topic_count_text_callback' => default_topic_count_text, 'link' => 'view', 'taxonomy' => 'post_tag', 'echo' => true, 'child_of' => null(see note!) ); ?> 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 <?php $args = array ( 'smallest' = > 8 , 'largest' = > 22 , 'unit' = > 'pt' , 'number' = > 45 , 'format' = > 'flat' , 'separator' = > \ \ "\n\\" , 'orderby' = > 'name' , 'order' = > 'asc' , 'exclude' = > null , 'include' = > null , 'topic_count_text_callback' = > default_topic_count_text , 'link' = > 'view' , 'taxonomy' = > 'post_tag' , 'echo' = > true , 'child_of' = > null ( see note ! ) ) ; ?> <?php wp_tag_cloud( $args ); ?> 1 <?php wp_tag_cloud ( $args ) ; ?> read more... scroll to top of page from within facebook app category : web development , jquery & javascript , html & css · no comments · by steven dobbelaere sep 21st, 2013 when within a facebook app you sometimes want to scroll to the top of the page but outside of the iframe which contains your app. to do that you use the following code in javascript: fb.canvas.scrollto(0,0); 1 fb . canvas . scrollto ( 0 , 0 ) ; this will only work when your canvas height is set to “settable”. by default 800px. you can make in settable in the app dashboard… read more... how to make a custom protected page in wordpress category : php , wordpress · (1) comment · by steven dobbelaere jul 3rd, 2013 the default password form uses this message: “this post is password protected. to view it please enter your password below:”. you can use a custom text to display on a protected page by using a filter in wordpress. add this code to your theme’s functions.php file: <?php function custom_password_form() { global $post; $label = 'protected-page-'.( empty( $post->id ) ? rand() : $post->id ); $o = '<form action="' . esc_url( site_url( 'wp-login.php?action=

URL analysis for stevendobbelaere.be


http://www.stevendobbelaere.be/custom-list-style-with-font-awesome/
http://www.stevendobbelaere.be/tabindex-problems-with-gravity-forms-in-wordpress/
http://www.stevendobbelaere.be/change-the-amount-of-tags-in-tagcloud-in-wordpress/#respond
http://www.stevendobbelaere.be/category/web-development/other/
http://www.stevendobbelaere.be/how-to-put-javascript-in-the-footer-in-wordpress/#respond
http://www.stevendobbelaere.be/category/web-development/git-capistrano/
http://www.stevendobbelaere.be/change-the-amount-of-tags-in-tagcloud-in-wordpress/
http://www.stevendobbelaere.be/scroll-to-top-of-page-from-within-facebook-app/#respond
http://www.stevendobbelaere.be/category/web-development/
http://www.stevendobbelaere.be/contact/
http://www.stevendobbelaere.be/category/web-development/html-css/
http://www.stevendobbelaere.be/page/2/
http://www.stevendobbelaere.be/scrollto-element-with-an-id-selector-using-jquery/
http://www.stevendobbelaere.be/photography/
http://www.stevendobbelaere.be/category/web-development/jquery-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;

% .be Whois Server 6.1
%
% The WHOIS service offered by DNS Belgium and the access to the records in the DNS Belgium
% WHOIS database are provided for information purposes only. It allows
% persons to check whether a specific domain name is still available or not
% and to obtain information related to the registration records of
% existing domain names.
%
% DNS Belgium cannot, under any circumstances, be held liable where the stored
% information would prove to be incomplete or inaccurate in any sense.
%
% By submitting a query you agree not to use the information made available
% to:
% - allow, enable or otherwise support the transmission of unsolicited,
% commercial advertising or other solicitations whether via email or otherwise;
% - target advertising in any possible way;
% - to cause nuisance in any possible way to the domain name holders by sending
% messages to them (whether by automated, electronic processes capable of
% enabling high volumes or other possible means).
%
% Without prejudice to the above, it is explicitly forbidden to extract, copy
% and/or use or re-utilise in any form and by any means (electronically or
% not) the whole or a quantitatively or qualitatively substantial part
% of the contents of the WHOIS database without prior and explicit permission
% by DNS Belgium, nor in any attempt thereof, to apply automated, electronic
% processes to DNS Belgium (or its systems).
%
% You agree that any reproduction and/or transmission of data for commercial
% purposes will always be considered as the extraction of a substantial
% part of the content of the WHOIS database.
%
% By submitting the query you agree to abide by this policy and accept that
% DNS Belgium can take measures to limit the use of its whois services in order to
% protect the privacy of its registrants or the integrity of the database.
%

Domain: stevendobbelaere.be
Status: NOT AVAILABLE
Registered: Tue Feb 17 2009

Registrant:
Not shown, please visit www.dnsbelgium.be for webbased whois.

Registrar Technical Contacts:
Organisation: Combell nv
Language: nl
Phone: +32.92187979
Fax:
Email: [email protected]


Registrar:
Name: Combell nv
Website: http://www.combell.com

Nameservers:
ns2.openminds.be
ns1.openminds.be
ns3.om-powered.net

Keys:

Flags:

Please visit www.dnsbelgium.be for more info.

  REFERRER http://www.domain-registry.nl

  REGISTRAR DNS Belgium

SERVERS

  SERVER be.whois-servers.net

  ARGS stevendobbelaere.be

  PORT 43

  TYPE domain

DOMAIN

  NAME stevendobbelaere.be

  STATUS NOT AVAILABLE

  CREATED Tue Feb 17 2009

NSERVER

  NS2.OPENMINDS.BE 195.47.215.13

  NS1.OPENMINDS.BE 195.47.215.14

  NS3.OM-POWERED.NET 95.85.56.34

  WWW.DNSBELGIUM.BE 107.154.249.139

  REGISTERED no

Go to top

Mistakes


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

  • www.ustevendobbelaere.com
  • www.7stevendobbelaere.com
  • www.hstevendobbelaere.com
  • www.kstevendobbelaere.com
  • www.jstevendobbelaere.com
  • www.istevendobbelaere.com
  • www.8stevendobbelaere.com
  • www.ystevendobbelaere.com
  • www.stevendobbelaereebc.com
  • www.stevendobbelaereebc.com
  • www.stevendobbelaere3bc.com
  • www.stevendobbelaerewbc.com
  • www.stevendobbelaeresbc.com
  • www.stevendobbelaere#bc.com
  • www.stevendobbelaeredbc.com
  • www.stevendobbelaerefbc.com
  • www.stevendobbelaere&bc.com
  • www.stevendobbelaererbc.com
  • www.urlw4ebc.com
  • www.stevendobbelaere4bc.com
  • www.stevendobbelaerec.com
  • www.stevendobbelaerebc.com
  • www.stevendobbelaerevc.com
  • www.stevendobbelaerevbc.com
  • www.stevendobbelaerevc.com
  • www.stevendobbelaere c.com
  • www.stevendobbelaere bc.com
  • www.stevendobbelaere c.com
  • www.stevendobbelaeregc.com
  • www.stevendobbelaeregbc.com
  • www.stevendobbelaeregc.com
  • www.stevendobbelaerejc.com
  • www.stevendobbelaerejbc.com
  • www.stevendobbelaerejc.com
  • www.stevendobbelaerenc.com
  • www.stevendobbelaerenbc.com
  • www.stevendobbelaerenc.com
  • www.stevendobbelaerehc.com
  • www.stevendobbelaerehbc.com
  • www.stevendobbelaerehc.com
  • www.stevendobbelaere.com
  • www.stevendobbelaerec.com
  • www.stevendobbelaerex.com
  • www.stevendobbelaerexc.com
  • www.stevendobbelaerex.com
  • www.stevendobbelaeref.com
  • www.stevendobbelaerefc.com
  • www.stevendobbelaeref.com
  • www.stevendobbelaerev.com
  • www.stevendobbelaerevc.com
  • www.stevendobbelaerev.com
  • www.stevendobbelaered.com
  • www.stevendobbelaeredc.com
  • www.stevendobbelaered.com
  • www.stevendobbelaerecb.com
  • www.stevendobbelaerecom
  • www.stevendobbelaere..com
  • www.stevendobbelaere/com
  • www.stevendobbelaere/.com
  • www.stevendobbelaere./com
  • www.stevendobbelaerencom
  • www.stevendobbelaeren.com
  • www.stevendobbelaere.ncom
  • www.stevendobbelaere;com
  • www.stevendobbelaere;.com
  • www.stevendobbelaere.;com
  • www.stevendobbelaerelcom
  • www.stevendobbelaerel.com
  • www.stevendobbelaere.lcom
  • www.stevendobbelaere com
  • www.stevendobbelaere .com
  • www.stevendobbelaere. com
  • www.stevendobbelaere,com
  • www.stevendobbelaere,.com
  • www.stevendobbelaere.,com
  • www.stevendobbelaeremcom
  • www.stevendobbelaerem.com
  • www.stevendobbelaere.mcom
  • www.stevendobbelaere.ccom
  • www.stevendobbelaere.om
  • www.stevendobbelaere.ccom
  • www.stevendobbelaere.xom
  • www.stevendobbelaere.xcom
  • www.stevendobbelaere.cxom
  • www.stevendobbelaere.fom
  • www.stevendobbelaere.fcom
  • www.stevendobbelaere.cfom
  • www.stevendobbelaere.vom
  • www.stevendobbelaere.vcom
  • www.stevendobbelaere.cvom
  • www.stevendobbelaere.dom
  • www.stevendobbelaere.dcom
  • www.stevendobbelaere.cdom
  • www.stevendobbelaerec.om
  • www.stevendobbelaere.cm
  • www.stevendobbelaere.coom
  • www.stevendobbelaere.cpm
  • www.stevendobbelaere.cpom
  • www.stevendobbelaere.copm
  • www.stevendobbelaere.cim
  • www.stevendobbelaere.ciom
  • www.stevendobbelaere.coim
  • www.stevendobbelaere.ckm
  • www.stevendobbelaere.ckom
  • www.stevendobbelaere.cokm
  • www.stevendobbelaere.clm
  • www.stevendobbelaere.clom
  • www.stevendobbelaere.colm
  • www.stevendobbelaere.c0m
  • www.stevendobbelaere.c0om
  • www.stevendobbelaere.co0m
  • www.stevendobbelaere.c:m
  • www.stevendobbelaere.c:om
  • www.stevendobbelaere.co:m
  • www.stevendobbelaere.c9m
  • www.stevendobbelaere.c9om
  • www.stevendobbelaere.co9m
  • www.stevendobbelaere.ocm
  • www.stevendobbelaere.co
  • stevendobbelaere.bem
  • www.stevendobbelaere.con
  • www.stevendobbelaere.conm
  • stevendobbelaere.ben
  • www.stevendobbelaere.col
  • www.stevendobbelaere.colm
  • stevendobbelaere.bel
  • www.stevendobbelaere.co
  • www.stevendobbelaere.co m
  • stevendobbelaere.be
  • www.stevendobbelaere.cok
  • www.stevendobbelaere.cokm
  • stevendobbelaere.bek
  • www.stevendobbelaere.co,
  • www.stevendobbelaere.co,m
  • stevendobbelaere.be,
  • www.stevendobbelaere.coj
  • www.stevendobbelaere.cojm
  • stevendobbelaere.bej
  • www.stevendobbelaere.cmo
Show All Mistakes Hide All Mistakes