ERR_CONNECTION_REFUSED

Website suddenly no longer showing anything?
Might be a DNS cache problem!

How to clear the DNS cache on your computer

This article describes how to clear the DNS cache on your computer.

Many computer operating systems use caching to store DNS lookup results. Normally this is not a problem, and accelerates network performance. However, when you are developing a web site or configuring domain settings, your computer’s DNS cache can get in the way, preventing you from accessing the correct site.

To clear the DNS cache, follow the appropriate procedure below for your computer’s operating system or web browser.

Continue reading ERR_CONNECTION_REFUSED

301-redirect

Ja, http://blog.mybrain.nl/ is verhuisd naar https://markohoven.com/
Hoe doe je dit nu op een correcte manier?
Binnen IIS kan dit met web.config

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
 <system.webServer>
  <httpRedirect enabled="true" destination="https://markohoven.com" httpResponseStatus="Permanent" />
  <defaultDocument enabled="true">
   <files>
    <clear />
     <add value="index.php" />
     <add value="index.htm" />
     <add value="index.html" />
     <add value="default.asp" />
     <add value="default.aspx" />
     <add value="default.htm" />
     <add value="default.html" />
    </files>
   </defaultDocument>
   <httpErrors errorMode="Custom">
    <remove statusCode="404" subStatusCode="-1" />
    <error statusCode="404" prefixLanguageFilePath="" path="/index.php" responseMode="ExecuteURL" />
   </httpErrors>
  </system.webServer>
</configuration>

Een andere mogelijkheid is in code… Continue reading 301-redirect

How Do I Flush My DNS Cache on Windows?


The following guide will walk you through flushing your DNS Cache. Every time you venture onto the Internet, DNS resolutions are being made and your computer stores many of them. Caching these resolutions can speed up your web activities because your computer no longer has to ask another computer where something is located.

Eventually, there will come a time when a bad entry is stored. There are generally two ways to remove these entries. First is to allow 24 hours to pass. During this time your computer will seek out and make the necessary DNS updates. Second is to flush your DNS cache.

  1. The first step to flushing your DNS is to open your “Windows Command” prompt.
  2. Click “Start” and type the word “Command” in the Start search field.
  3. Right-click the command prompt icon and select the option to “Run as Administrator”.
  4. In the open prompt, type “ipconfig /flushdns” (without the quotes).
    You should receive a message of your success as confirmation when the cache is cleared.

Flushing the cache removes all the information stored within the cache, forcing the computer to find new DNS information.

Fixing DNS_PROBE_FINISHED_NXDOMAIN Error

Sometimes when using Google Chrome, you get an error DNS_PROBE_FINISHED_NXDOMAIN instead of the website. Nothing seems wrong with the internet connection, the website might even work in other browsers. Below are two methods that might help you to get rid of this error. Follow the below mentioned steps and you will be good to go:  Continue reading Fixing DNS_PROBE_FINISHED_NXDOMAIN Error