The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Disable Right _click or No Copying

+2
mangaka
Tanthya
6 posters

Go down

Disable Right _click or  No Copying Empty Disable Right _click or No Copying

Post by Tanthya August 22nd 2013, 6:52 am

Hi ,

I run a forum where lot of writing takes place, As  such many of our contents are getting copied without our permission by obscure groups, Is there any way to prevent them from copying us.. I do know there is a Blanket  Right-Click  that disables copying for all forum but I would like to have a Right -Click code that would be effective on one particular post that we might want to prevent get copied ...Please Help..
avatar
Tanthya
Forumember

Posts : 66
Reputation : 1
Language : English

Back to top Go down

Disable Right _click or  No Copying Empty Re: Disable Right _click or No Copying

Post by Guest August 22nd 2013, 6:57 am

like i posted just a few mintues ago CA-SA-BY is called attributing if that other forum doesnt comply you have the right to report and or request to have there content or your content back
avatar
Guest
Guest


Back to top Go down

Disable Right _click or  No Copying Empty Re: Disable Right _click or No Copying

Post by Tanthya August 22nd 2013, 7:05 am

RikudouSennin wrote:like i posted just a few mintues ago CA-SA-BY is called attributing if that other forum doesnt comply you have the right to report and or request to have there content or your content back

There are many forums and groups in FB who are taking our stuff, If we engage in  reporting,  whole time and days  will be wasted.. Instead of that , It would be better if we can lock our own source preventing copying, Is it not? Is there any way to do  No copying ??
avatar
Tanthya
Forumember

Posts : 66
Reputation : 1
Language : English

Back to top Go down

Disable Right _click or  No Copying Empty Re: Disable Right _click or No Copying

Post by Guest August 22nd 2013, 7:12 am

you could lock your sources and much other but if i was you ill make a huge Global announcement about copying also with atleas 10 reports on the pages FB would delete the page
avatar
Guest
Guest


Back to top Go down

Disable Right _click or  No Copying Empty Re: Disable Right _click or No Copying

Post by mangaka August 22nd 2013, 9:20 am

This code works well for Phpbb2 and Punbb

first go to ACP>>Display>>Templates>>General>>overall_header

Paste this code below the </body> tag:

Code:
    <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="Click Disabled";
        ///////////////////////////////////
        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>
http://atlanta.forumid.net/t16-menonaktifkan-klik-kanan-phpbb2-punbb
mangaka
mangaka
Forumember

Female Posts : 121
Reputation : 5
Language : Indonesia
Location : Well

Back to top Go down

Disable Right _click or  No Copying Empty Re: Disable Right _click or No Copying

Post by runawayhorses August 25th 2013, 4:45 am

Tanthya wrote: It would be better if we can lock our own source preventing copying, Is it not? Is there any way to do  No copying ??
You should know that disabling right-click won't stop most people from getting the images they want. A simple tick in your browser can disable javascript from preventing the right-click function. Also other techniques to stop people are useless against someone that wants the images bad enough, there is always a work around.

As a general rule of thumb, you should not upload images you seriously don't want used by someone else, because when you upload them online and present them in public venues, you are in essence putting the images up for grabs.
avatar
runawayhorses
Hyperactive

Male Posts : 2537
Reputation : 166
Language : English
Location : United States

http://runawayhorses.alldiscussion.net/

Back to top Go down

Disable Right _click or  No Copying Empty Re: Disable Right _click or No Copying

Post by -nimbuzz- August 28th 2013, 8:32 am

This Code Will Working Or No Bro
avatar
-nimbuzz-
Forumember

Posts : 101
Reputation : 2
Language : india

Back to top Go down

Disable Right _click or  No Copying Empty Re: Disable Right _click or No Copying

Post by Tanthya August 28th 2013, 11:19 pm

Runaway Horses,

It is nt the Images that we are concerned about but primarily the content which are prose .. That gets plagiarized ..we would like to prevent the blatant copying of it..
avatar
Tanthya
Forumember

Posts : 66
Reputation : 1
Language : English

Back to top Go down

Disable Right _click or  No Copying Empty Re: Disable Right _click or No Copying

Post by runawayhorses August 28th 2013, 11:25 pm

Well in any case a javascript to disable right-click will not stop most people. People can take screenshots, view your source code, their are countless ways to copy material, and my statements stand on this issue for any copy attempts.
avatar
runawayhorses
Hyperactive

Male Posts : 2537
Reputation : 166
Language : English
Location : United States

http://runawayhorses.alldiscussion.net/

Back to top Go down

Disable Right _click or  No Copying Empty Re: Disable Right _click or No Copying

Post by Mr.EasyBB September 14th 2013, 5:47 pm

Yes now you can also add attributes of unselectable="on" to your html elements. Though it will only work in IE9+ for mozilla and webkit browsers there is CSS for that. Though if someone really wanted your content they could just write it in a word document or even just open up the console and copy it there. So in general there is absolutely no way to secure your online materials, once you start creating things online all possible security of theft goes away. Though like others have said, reporting and messaging the user who stole your items and explain to them they have been reported and if they don't remove the content you will take legal action.
avatar
Mr.EasyBB
Forumember

Posts : 71
Reputation : 9
Language : HTML/CSS/JS/JQUERY/MOOTOOLS

http://www.avacweb.com

Back to top Go down

Disable Right _click or  No Copying Empty Re: Disable Right _click or No Copying

Post by ShowStopper September 16th 2013, 11:36 pm

mangaka wrote:This code works well for Phpbb2 and Punbb

first go to ACP>>Display>>Templates>>General>>overall_header

Paste this code below the </body> tag:

Code:
    <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="Click Disabled";
        ///////////////////////////////////
        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>
http://atlanta.forumid.net/t16-menonaktifkan-klik-kanan-phpbb2-punbb
Someone could just disable JavaScript in their browser.
avatar
ShowStopper
Forumember

Female Posts : 68
Reputation : 1
Language : English | HTML | Javascript | CSS

http://heroesnetwork.forumotion.net

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum