Tutorial : How To Fix This Site Cant be Reached on windows 10


Method 1 [ changing our IPv4 DNS Address

1. Control panel > Network and Internet > Network and sharing center
2. Go to connection and click wifi ( the blue word) > properties
3. Double click the Internet protocol Version 4 (TCP/ IPv4
4. Click the ' Use the following DNS server addresses ( kan ada dua, ambil bahagian bawah )
5.

# Public DNS server address Preferred DNS 8.8.8.8 Alternate DNS 8.8.4.4 or Preferred DNS 4.2.2.3 Alternate DNS 4.2.2.4 or Preferred DNS 4.2.2.1 Alternate DNS 4.2.2.2 or Preferred DNS 8.26.56.26 Alternate DNS 8.20.247.20 or Preferred DNS 208.67.222.222 Alternate DNS 208.67.220.220


Cuba masukkan nilai ni satu satu. Lepastu tekan okay. Tengok mana yang boleh.

Method 2 [ restart the DNS client service)

1. Search Run > type services.msc >  okay
2. Bila dah keluar , care perkataan DNS client  > right click and click restart if applicable. Kalau Takada, maknanya memang dah update.

Method 3 [ Reset TCP/ IP)
1. Search Cmd > Click Command Prompt
2.

1. ipconfig /release 2. ipconfig /all 3. ipconfig /flushdns 4. ipconfig /renew 5. netsh int ip set dns 6. netsh winsock reset


Copy satu satu click tu.. and enter.... copy lagi enter..... sampai habis

Eg. Copy yang no.1 > enter
Copy no. 2 > enter .
sampai no.6

:) Settle.

Cr. LINK

Tutorial : 3 steps How to disable select/click on blog


To disable people select your post / copy your post.

1. Theme > Edit HTML > Click All black
2. ctrl + f , find the word </head>
3. Copy this code under it.

<script type='text/javascript'>
if (typeof document.onselectstart!=&quot;undefined&quot;) {
document.onselectstart=new Function (&quot;return false&quot;);
}
else{
document.onmousedown=new Function (&quot;return false&quot;);
document.onmouseup=new Function (&quot;return true&quot;);
}
</script>
4. Done

----------  --------- --------  WAY 2

1. Dashboard > blog's template > Customize > Advanced > Add CSS
2. Now copy this code and paste in ' Add custom CSS' box.

.article-content {
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }


3. Now click on the ‘Apply to Blog’ button, which is given on the upper right side of your screen. It will inject the required code in the Blogger HTML template.
4. Now click ‘View Blog’ link to check Text Selection is disabled on Not.
------- -------- ----- WAY 3 
1. Dashboard › blog’s Settings › Posts and comments › Post Template › Click on ‘Add.’
2. Now paste the following code Post template Box
<style>
.article-content {
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
</style>

3. Now click on the ‘Save Settings’ button, which is given on the upper right side.
4. When you will write a post, every time this code will automatically come into a post.
5. Do not delete it and keep it at the bottom of your blog post.

CR. to credit
ariexxn