Showing posts with label Anti-Plagiarism. Show all posts
Showing posts with label Anti-Plagiarism. Show all posts

Monday, May 30, 2011

The final touch up of  "Learning to protect your contents " is disabling or hiding the source code option.In the last few days we have learned few tips on disabling the right click option and disabling the text selection option to protect our web page information.The main aim being to stop the visitors from copying our copyrighted works in order to prevent plagiarism .

With this final touch up, we can relax that our web page information stays secure .Not to forget that the Internet is a place for sharing information and ideas ,sometimes we feel the need for securing a little but not the whole.
Source padding :
As funny and simple as it seems this technique will divert few visitors from viewing your code.Just add a tons of white spaces at the start of your html code and then save your page.Now when someone naive clicks to view your source code,the page appears blank.

JavaScript Encryption :
This is the powerful method of encrypting our source code and then write the contents to the browser window.But the drawback is that , it only works on "Internet Explorer " and the pages that has enabled JavaScript functions.Also, we cant update the page and it con

Details and Codes : htmlgaurdian

Trapping the Mouse Right click :
By trapping the mouse right click ,it makes copying harder .This simple java script for no right click helps securing your images and makes it unable for anyone who wants to use your images

<script type="text/javascript>
var message="You can't see the page code"
function click(e) {
    if (document.all) {
        if (event.button==2||event.button==3) {
        alert(message);
        return false;
        }
    }
    if (document.layers) {
        if (e.which == 3) {
        alert(message);
        return false;
        }
    }
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
</script>


CSS Encoding:
Finally ,we can make use of CSS web pages to hide some of the coding instead of HTML web pages.We can also put encoding on our pages so that we can catch someone using your "copyrighted" stuff. These makes useful when you need to prove that someone has stolen your stuff.

Complain to the related HOSTS:
When you think that someone has used your stuff , make use of the screen shots (ctrl +printscrn) to prove them guilty when needed when you register a complaint to Google for Blogger ,WordPress for WordPress Blogs or the related hosts .


Google Blog spots
Word Press Blogs


For the .com domains or any other domains  , first find who is the provider and who is hosting that particular URL(domain).Then using WHOIS web page identify the owner of that particular web page  (100 % reliable) and mail /contact the desired person or their HOST.

Whois.net
Whois.com
Who.is

When your comments and mails prove to be a waste , Complaining to the related hosts is the last step and indeed they prove to be beneficial and helps in doing your work successfully  .



Category: articles

Tuesday, May 17, 2011

Well,this post was born as a result of how I tried and  protected my poetry blog "Inside My Poem Book" from  Plagiarism .So what is it ? Plagiarism means duplication of your web content .Your contents which is copyrighted in your name is used somewhere else in the Internet without your consents or permissions.Sometimes your work is displayed as their work and yet sometimes your work has been used several times in order to improve the plagiarizer web page without your notice.


I have been a victim of plagiarism wherein I fall on the latter category above.When I first saw that my content was plagiarized through Google Search , as all writer would be I was shocked.

I have already registered for "myfreecopyrights" and "Creative Common License" but they are like paper spread over the main meal.With a hard blow , the paper flies way revealing the food to tasted by nay on goers .Has no power unless the concerned person respects for presenting himself or herself with respect in a virtual world .In order to safe guard our food,further we will cover tightly inside a box ,or keep it in a place where it cant be seen .Like that ,thought we cant keep our contents unseen ,we still can protect it inside the box.

Steps:

1.Disabling Right -Click : 

Right-click is very use fulL of opening links in a new tab without losing the original page.But the same right -click has the "copy and paste "option will lets others to easily transfer our work into a word or text  processor .
Code to disable right click :


<script language="JavaScript">
<!--
//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="Sorry -Copyright Contents!";
///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("alert(message);return false")
// -->
</script>

2.Disabling Selection :

The text selection is used for copying certain texts which are highly useful tools for learning and writing from Internet.It is also used for repetition works.As always, like every positive having a negative ,this mode of selection helps the content stealer to steal your contents easily to his/her own blog or website

Code for disabling selection :


Paste this code after the </head> in your Design -Edit HTML -Edit Template .Kindle download your template before proceeding further.

<script language="JavaScript1.2">
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")

//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>

The above two codes are highly helpful unless you have your feeds burned in Feed Burner.In case,you have your feeds enabled then you got to do more to protect your blog.


How to know whether your web page has been copied ?

  1. Do a Google search for your topics and your names
  2. Use free Plagiarism Checker 
Learn More on Avoiding Plagiarism in order to protect your web page 
  1. REGISTERING YOUR BLOG FOR YOUR CONTENTS
  2. CREATING ,PUBLISHING AN PROTECTING YOUR FEEDS 
  3. AVOID PLAGIARISM  OF YOUR CONTENTS 
  4. DMCA COMPLAINTS
Since I am using blogger for my blogs, I would be covering all I learned form the blogger point of view.Hope these helps .


If nothing like the above explained things work which is rare , TAKE A BREAK .



Category: articles