f Simple Ways To Protect Content From Copying | Information Ground
Hello Friends!
We are moved to new address http:/technomi.com Please update your bookmarks.

Simple Ways To Protect Content From Copying

Posted by Unknown | | Category: , |

Simple Ways to Protect Content From Copying
Plagiarism is a very big problem for bloggers.Bloggers work hard to create content and it is easily republished or copied by someone else.Bloggers take a lot time to think and create material and than it is stolen.It is hard to copyright the content as there is no geographical boundry on internet.But we can make it hard for the copier to stole data from our website or blog.So question is how to save your content from content thieves? Only Answer is - follow these simple steps to prevent your content from copying :-

1)Use Tynt to prevent copying data

First method to prevent your data from stolen is to use a script provided by Tynt.com.Register a free account there and you will get a script.Place it just before closing head tag (/head) of your website template and you are done.
Now whenever somebody copies your content, a link to your data will be placed in that content.This will help in Link Building also and help will improve your search engine ranking.

2) Disable the selection of Content
Second method is disable the selection of your content.If it is hard to select your conent than it will be harder to stole your content.To disable the selection of content on your website place the code below just before closing head tag of your template or webpage .

Script to Disable the selection of Content
<script type="text/javascript">
var omitformtags=["input", "textarea", "select"]
omitformtags=omitformtags.join("|")
function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase
())==-1)
return false
}
function reEnable(){
return true
}
if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}
</script>

In this case the data can be copied from your page source.So hide the page source of your webpage by inserting the following snippet of code:-

Script to hide the Pagesource
<body bgcolor="#FFFFFF" ondragstart="return false" onselectstart="return false">

3) Disable Right Click Of Mouse on Webpage
Another way to make copying content harder is to disable right click of mouse.You can do it by inserting a script before the closing head tag (</head>) of  your theme .

Script to Disable Right Click Of Mouse on Webpage

<script language="JavaScript1.1">
<!-- var debug =
true; function
right(e) { if (navigator.appName == 'Netscape' && (e.which
== 3 || e.which
== 2)) return false; else if (navigator.appName ==
'Microsoft Internet Explorer'
&& (event.button == 2 || event.button == 3)) { alert('This
Page is fully
protected!'); return false; } return true; }
document.onmousedown=right; if (document.layers)
window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right; //--></script>

Script for Right Click Disabled For Images
<SCRIPT LANGUAGE="JavaScript1.1">

<!-- Begin
function right(e) {
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer'
&&
(event.button == 2 || event.button == 3)) {
alert("I'm sorry, The Right click option on your mouse has
been disabled for the download window pages.");
return false;
}
return true;
}

document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents
(Event.MOUSEDOWN);
if (document.layers) window.captureEvents
(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;
//  End -->
</script>

4) Using Copyscape

Use copyscape to show a warning message to your viewers about content protected by copyscape.
You can use free as well as premium service of copyscape.


By using these simple techniques you can secure your data.These techniques do not protect your data 100% but make it harder for the copier to easily copy your content.

Currently have 0 Response to 'Simple Ways To Protect Content From Copying'


Leave a Reply

Comments are moderated and only those comments which are related to topic will be published.

Related Useful Articles