bolaky.net Report : Visit Site


  • Ranking Alexa Global: # 19,617,014

    Server:Microsoft-IIS/6.0...
    X-Powered-By:ASP.NET

    The main IP address: 185.96.92.56,Your server -,- ISP:-  TLD:net CountryCode:-

    The description :server-side stuff ......with...... {.net, c#, sitecore ...}...

    This report updates in 12-Jul-2018

Created Date:2007-10-04
Changed Date:2016-10-05

Technical data of the bolaky.net


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host bolaky.net. Currently, hosted in - and its service provider is - .

Latitude: 0
Longitude: 0
Country: - (-)
City: -
Region: -
ISP: -

the related websites

HTTP Header Analysis


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

Content-Length:23539
Content-Script-Type:text/javascript
X-Powered-By:ASP.NET
Content-Encoding:deflate
Server:Microsoft-IIS/6.0
Cache-Control:private
Date:Thu, 12 Jul 2018 05:54:42 GMT
Content-Style-Type:text/css
Content-Type:text/html; charset=utf-8

DNS

soa:ns1.ourwindowsnetwork.com. hostmaster.bolaky.net. 2015072610 3600 900 604800 14400
ns:ns1.ourwindowsnetwork.com.
ns3.ourwindowsnetwork.com.
ns2.ourwindowsnetwork.com.
ipv4:IP:185.96.92.56
ASN:198047
OWNER:UKWEB-EQX, GB
Country:GB
mx:MX preference = 21, mail exchanger = mail.bolaky.net.
MX preference = 30, mail exchanger = backupmail.ourwindowsnetwork.com.

HtmlToText

< i runat="server" / > | server-side stuff ......with...... {.net, c#, sitecore ...} < i runat="server" / > server-side stuff ......with...... {.net, c#, sitecore ...} filter by apml home archive contact subscribe iis 7.5 logging with sitecore 6.x in integrated pipeline mode by aboo bolaky 4. december 2010 21:48 when you run sitecore 6.x in integrated pipeline mode, you will notice that all iis log entries contain the log entry for the resquest to the layout (aspx) page (instead of the actual sitecore item .e.g /contactus.aspx). this problem is partly related to another issue outlined on stack overflow [ http://stackoverflow.com/questions/353541/iis7-rewritepath-and-iis-log-files ] if you run sitecore in classic mode, the problem disappears . however, if you still wish to use integrated pipeline mode, you will have to intercept the request before the sitecore httpmodule ( sitecore.nexus.dll ) gets involved. solution create a class that extends system.web.ihttpmodule and set the path back to the original value after the request has been processed but before the iis logging module writes the log entry. using system; using system.collections.generic; using system.linq; using system.text; using system.web; namespace test { public class rewritepath : ihttpmodule { public void init(httpapplication context) { context.beginrequest += onbeginrequest; context.logrequest += onendrequest; } static void onbeginrequest(object sender, eventargs e) { var app = (httpapplication)sender; app.context.items["originalpath"] = app.context.request.path; } static void onendrequest(object sender, eventargs e) { var app = (httpapplication)sender; var originalpath = app.context.items["originalpath"] as string; if (originalpath != null) { app.context.rewritepath(originalpath); } } public void dispose() { } } } locate the modules section (under system.webserver ..remember we’re running in integrated pipeline mode) and plug the module in before the sitecore nexus httpmodule here's what's captured when everything is compiled and deployed thanks sitecore support. 36eaec9f-3ec6-4d2d-9328-61ba4bb4a0de|1|4.0 tags: .net , sitecore .net | applications | sitecore | tips & tricks submit to dotnetkicks... permalink | comments (6) missing icons in page edit mode in sitecore 6.1 by aboo bolaky 25. november 2010 05:29 i remember, back in the days when i was using sitecore 6 in page edit mode, an blue arrow would highlight the placeholders on the page when i would hover the placeholder name in the in design pane. now that i'm using sitecore 6.3, i've realised that this was no longer the case. the only thing that happens is the description of the placeholder (new cool thing !) is displayed at the bottom of the page. after spending several hours with ie developer toolbar (yes..ie developer toolbar !!!.. i couldn't use firefox/firebug because the design mode is not currently supported in firefox), it finally came down to this : to make life easier (allegedly) and boost the performance (again...allegedly), all icon files for sitecore (initially in directory ( sitecore\shell\themes\standard ) have been zipped up and automatically extracted on the fly when you select an icon from the icon choose screen.. well that's a good thing..but... the webedit.css (which, i hear you say, is responsible for styling the injected spans that the page editor introduces) still references icons/files in the "themes\standard" folder. result: well, since those files are now zipped up, they will no longer be available and thus won't appear on page edit mode. workaround: there are about 10 url references (e.g background:url (/sitecore/shell/themes/standard/applications/32x32/arrow_right_blue.png) in the webedit.css. extract the required icons from their respective zipped archives, and change the background url references accordingly once this is done, everything was back to normal and we were all happy again.. what a day !! :) 6b4bbdba-afcf-4261-82b1-2c6d65505118|1|5.0 tags: sitecore sitecore submit to dotnetkicks... permalink | comments (3) listview with datapager problem in .net 4 by aboo bolaky 31. october 2010 00:36 i wanted to set the querystringfield property of the datapager dynamically. by default, if you do not specify this property, the pager works on a postback model. on the other hand, if you do set the querystringfield to something, it'll use the value that you set the querystringfield to as a query string parameter and assign it the appropriate page number (iow, it makes use of a query string parameter to change the page view) the declarative and code-behind files are simple enough.. public partial class _default : system.web.ui.page { public string fieldname { get { return "pageid"; } } protected override void oninit(eventargs e) { base.oninit(e); listview1.pagepropertieschanging += new eventhandler(listview1_pagepropertieschanging); datapager1.querystringfield = fieldname; } void listview1_pagepropertieschanging(object sender, pagepropertieschangingeventargs e) { datapager1.setpageproperties(e.startrowindex, e.maximumrows, false); buildandbind(); } protected void page_load(object sender, eventargs e) { if (!this.ispostback) { buildandbind(); } } private void buildandbind() { listview1.datasource = builddatasource(); listview1.databind(); } private list builddatasource() { person a = new person { firstname = "a", lastname = "a", address = "address1" }; person b = new person { firstname = "b", lastname = "b", address = "address2" }; person c = new person { firstname = "c", lastname = "c", address = "address3" }; person d = new person { firstname = "d", lastname = "d", address = "address4" }; person e = new person { firstname = "e", lastname = "e", address = "address5" }; person f = new person { firstname = "f", lastname = "f", address = "address6" }; person g = new person { firstname = "g", lastname = "g", address = "address7" }; person h = new person { firstname = "h", lastname = "h", address = "address8" }; person i = new person { firstname = "i", lastname = "i", address = "address9" }; person j = new person { firstname = "j", lastname = "j", address = "address10" }; person k = new person { firstname = "k", lastname = "k", address = "address11" }; person l = new person { firstname = "l", lastname = "l", address = "address12" }; person m = new person { firstname = "m", lastname = "m", address = "address13" }; list list = new list(); list.add(a); list.add(b); list.add(c); list.add(d); list.add(e); list.add(f); list.add(g); list.add(h); list.add(i); list.add(j); list.add(k); list.add(l); list.add(m); return list; } } so far...so good.. using the above example, since we've set the property in the code behind, we'd expect the pager to use a query string to drive the page view. commenting the line out forces the pager to use a postback model. what about .net 4? the above situations work when the project is set up to run in .net 3.5 . however, this solution does not seem to work with .net 4.0 at all. if we set the target framework to 4.0, the paging does not work if we want to force a querystringfield at runtime :( i've attached a copy of the vs2010 website here testwebapp.zip (2.44 kb) and the video (in mp4 format...) here datapager.mp4 (5.27 mb) if there's anyone out there who can give me a clue on what's right or wrong, please drop me a few lines.. :) 8ab331f2-18f8-469d-ab69-7448d1e8bcf1|1|3.0 tags: .net .net | asp.net submit to dotnetkicks... permalink | comments (0) indexing pdf documents with lucene and sitecore by aboo bolaky 14. january 2010 06:32 getting lucene to index pdf document is a doddle, thanks to the document published on sdn. if you follow the instructions to the letter, you will be able to make lucene index pdf documents in no time however , please be aware that you have to properly dispose the objects (to name a few... pddocument and ikvm.io.inputstreamwrapper objects) after you parsed the document(s). if you forget to do so, you will soon notice that your temp folder (c:\win

URL analysis for bolaky.net


http://www.dotnetkicks.com/submit?url=http%3a%2f%2fwww.bolaky.net%2fpost%2fmissing-icons-in-page-edit-mode-in-sitecore-61.aspx&title=missing+icons+in+page+edit+mode+in+sitecore+6.1
http://www.bolaky.net/2010/12/default.aspx
http://www.bolaky.net/category/net.aspx
http://www.bolaky.net/image.axd?picture=contactus.jpg
http://www.bolaky.net/post/im-a-pc.aspx
http://www.bolaky.net/2010/10/default.aspx
http://www.bolaky.net/syndication.axd?category=5a9f6c13-d807-4a35-af1b-99eb2dc3bff9
http://www.bolaky.net/page/aboutme.aspx
http://www.bolaky.net/2008/09/default.aspx
http://www.bolaky.net/category/freebies.aspx
http://www.bolaky.net/post.aspx?id=c7c8025f-2a75-4f88-af42-6b3037eee18b
http://www.bolaky.net/image.axd?picture=data+installation+folder.jpg
http://www.bolaky.net/?tag=/miscellaneous
http://www.bolaky.net/post/listview-with-datapager-problem-in-net-4.aspx
http://www.bolaky.net/post/retrieving-the-data-folder-installation-path-from-ms-sql-server-using-tsql.aspx

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: BOLAKY.NET
Registry Domain ID: 1255401505_DOMAIN_NET-VRSN
Registrar WHOIS Server: whois.1and1.com
Registrar URL: http://registrar.1and1.info
Updated Date: 2016-10-05T07:19:57Z
Creation Date: 2007-10-04T17:32:34Z
Registry Expiry Date: 2017-10-04T17:32:34Z
Registrar: 1&1 Internet SE
Registrar IANA ID: 83
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.6105601459
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: NS1.OURWINDOWSNETWORK.COM
Name Server: NS2.OURWINDOWSNETWORK.COM
Name Server: NS3.OURWINDOWSNETWORK.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2017-08-16T11:01:59Z <<<

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 1&1 Internet SE

SERVERS

  SERVER net.whois-servers.net

  ARGS domain =bolaky.net

  PORT 43

  TYPE domain

DOMAIN

  NAME bolaky.net

  CHANGED 2016-10-05

  CREATED 2007-10-04

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

NSERVER

  NS1.OURWINDOWSNETWORK.COM 185.96.92.34

  NS2.OURWINDOWSNETWORK.COM 95.142.154.162

  NS3.OURWINDOWSNETWORK.COM 185.96.92.22

  REGISTERED yes

Go to top

Mistakes


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

  • www.ubolaky.com
  • www.7bolaky.com
  • www.hbolaky.com
  • www.kbolaky.com
  • www.jbolaky.com
  • www.ibolaky.com
  • www.8bolaky.com
  • www.ybolaky.com
  • www.bolakyebc.com
  • www.bolakyebc.com
  • www.bolaky3bc.com
  • www.bolakywbc.com
  • www.bolakysbc.com
  • www.bolaky#bc.com
  • www.bolakydbc.com
  • www.bolakyfbc.com
  • www.bolaky&bc.com
  • www.bolakyrbc.com
  • www.urlw4ebc.com
  • www.bolaky4bc.com
  • www.bolakyc.com
  • www.bolakybc.com
  • www.bolakyvc.com
  • www.bolakyvbc.com
  • www.bolakyvc.com
  • www.bolaky c.com
  • www.bolaky bc.com
  • www.bolaky c.com
  • www.bolakygc.com
  • www.bolakygbc.com
  • www.bolakygc.com
  • www.bolakyjc.com
  • www.bolakyjbc.com
  • www.bolakyjc.com
  • www.bolakync.com
  • www.bolakynbc.com
  • www.bolakync.com
  • www.bolakyhc.com
  • www.bolakyhbc.com
  • www.bolakyhc.com
  • www.bolaky.com
  • www.bolakyc.com
  • www.bolakyx.com
  • www.bolakyxc.com
  • www.bolakyx.com
  • www.bolakyf.com
  • www.bolakyfc.com
  • www.bolakyf.com
  • www.bolakyv.com
  • www.bolakyvc.com
  • www.bolakyv.com
  • www.bolakyd.com
  • www.bolakydc.com
  • www.bolakyd.com
  • www.bolakycb.com
  • www.bolakycom
  • www.bolaky..com
  • www.bolaky/com
  • www.bolaky/.com
  • www.bolaky./com
  • www.bolakyncom
  • www.bolakyn.com
  • www.bolaky.ncom
  • www.bolaky;com
  • www.bolaky;.com
  • www.bolaky.;com
  • www.bolakylcom
  • www.bolakyl.com
  • www.bolaky.lcom
  • www.bolaky com
  • www.bolaky .com
  • www.bolaky. com
  • www.bolaky,com
  • www.bolaky,.com
  • www.bolaky.,com
  • www.bolakymcom
  • www.bolakym.com
  • www.bolaky.mcom
  • www.bolaky.ccom
  • www.bolaky.om
  • www.bolaky.ccom
  • www.bolaky.xom
  • www.bolaky.xcom
  • www.bolaky.cxom
  • www.bolaky.fom
  • www.bolaky.fcom
  • www.bolaky.cfom
  • www.bolaky.vom
  • www.bolaky.vcom
  • www.bolaky.cvom
  • www.bolaky.dom
  • www.bolaky.dcom
  • www.bolaky.cdom
  • www.bolakyc.om
  • www.bolaky.cm
  • www.bolaky.coom
  • www.bolaky.cpm
  • www.bolaky.cpom
  • www.bolaky.copm
  • www.bolaky.cim
  • www.bolaky.ciom
  • www.bolaky.coim
  • www.bolaky.ckm
  • www.bolaky.ckom
  • www.bolaky.cokm
  • www.bolaky.clm
  • www.bolaky.clom
  • www.bolaky.colm
  • www.bolaky.c0m
  • www.bolaky.c0om
  • www.bolaky.co0m
  • www.bolaky.c:m
  • www.bolaky.c:om
  • www.bolaky.co:m
  • www.bolaky.c9m
  • www.bolaky.c9om
  • www.bolaky.co9m
  • www.bolaky.ocm
  • www.bolaky.co
  • bolaky.netm
  • www.bolaky.con
  • www.bolaky.conm
  • bolaky.netn
  • www.bolaky.col
  • www.bolaky.colm
  • bolaky.netl
  • www.bolaky.co
  • www.bolaky.co m
  • bolaky.net
  • www.bolaky.cok
  • www.bolaky.cokm
  • bolaky.netk
  • www.bolaky.co,
  • www.bolaky.co,m
  • bolaky.net,
  • www.bolaky.coj
  • www.bolaky.cojm
  • bolaky.netj
  • www.bolaky.cmo
Show All Mistakes Hide All Mistakes