How To Secure Your Website From Content Thieves

Please Wait Bro, We Made your link safe to visit.

Baca cara download agar tidak bingung Disini


Securing content from copasers / content thieves is very important. Imagine you spent weeks, thinking of content to fill your website and someone stole it or copied it to be used as content on the website. Maybe there are those who think that they just let it go or just ignore your content, because Google knows which content is original and which is copy and paste. but some people also feel outraged by it.

So from that here I will provide a way to secure your website from the copaser. My way is to disable some shortkeys such as CTRl + U, CTRL + C, CTRL + X, Inspect Element and other shortkeys using Javascript.

THE TUTORIAL
Well the first one we will turn off the CTRL + U, CTRL + C, CTRL + X shortkey first. Please enter your blogger dashboard and go to the Template menu then edit the html. just copy all the code below and place it above the </body> tag . oh yes make sure your template is installed jquery yes

<script>
/*<![CDATA[*/
document.onkeydown = function(e) {
if (e.ctrlKey &&
(e.keyCode === 67 ||
e.keyCode === 86 ||
e.keyCode === 88 ||
e.keyCode === 85 ||
e.keyCode === 117)) {
return false;
} else {
return true;
}
};
$(document).keypress("u",function(e) {
if(e.ctrlKey)
{
return false;
}
else
{
return true;
}
});
//]]>//
</script>

Number: 67 is the shortkey C
Number: 67 is the X shortkey
Number: 86 is the shortkey V
Number: 85 is the shortkey U
Number: 117 is the shortkey f6
You can see more details for the kinds of shortkeys at  https://keycode.info/

Don't forget to save the template. Next we will disable the CTRL + SIFT + I keys and also right click. still editing the html, please copy the javascript below and place it above the </body> tag .

<script>
/*<![CDATA[*/
$(window).on('keydown',function(event)
{
if(event.keyCode==123)
{
return false;
}
else if(event.ctrlKey && event.shiftKey && event.keyCode==73)
{
return false;
}
else if(event.ctrlKey && event.keyCode==73)
{
return false;
}
});
$(document).on("contextmenu",function(e)
{
e.preventDefault();
});
//]]>//
</script>

Don't forget to save the template. Because above we open 2 <script> codes at once, to make it even simpler we just combine all the codes into one, replace the 2 scripts above with the script below.

<script>
/*<![CDATA[*/
document.onkeydown = function(e) {
if (e.ctrlKey &&
(e.keyCode === 67 ||
e.keyCode === 86 ||
e.keyCode === 85 ||
e.keyCode === 117)) {
return false;
} else {
return true;
}
};
$(document).keypress("u",function(e) {
if(e.ctrlKey)
{
return false;
}
else
{
return true;
}
});

$(window).on('keydown',function(event)
{
if(event.keyCode==123)
{
return false;
}
else if(event.ctrlKey && event.shiftKey && event.keyCode==73)
{
return false;
}
else if(event.ctrlKey && event.keyCode==73)
{
return false;
}
});
$(document).on("contextmenu",function(e)
{
e.preventDefault();
});
//]]>//
</script>


That's my way of securing the content on your website, the drawback is that you will be faced with where you have to copy the content you write yourself, and by the way above, you will find it difficult to do it yourself. And don't assume that in the way above your content is 100% safe because the method above must have flaws and can be made sense in other ways that I don't know myself.

Belum ada Komentar untuk "How To Secure Your Website From Content Thieves"

Posting Komentar

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel