Protecting photos
5 posters
Page 1 of 1
Protecting photos
Is there any way to protect photos on threads in a forum? I tried including a protect script (no right click), but it does not work.
Any other way to protect photos on the forum from people copying them?
Any other way to protect photos on the forum from people copying them?
itoh- Forumember
- Posts : 203
Reputation : 0
Language : english
Location : Japan
Re: Protecting photos
Other than a disable right click script then I don't know what to suggest. If someone wants to take a photo then they'll find a way.
This will more annoy your members as well as many people will use a right click to copy/paste text etc.
This will more annoy your members as well as many people will use a right click to copy/paste text etc.
Derri- Helper
- Posts : 8711
Reputation : 638
Language : English & Basic French
Location : Scotland, United Kingdom
Re: Protecting photos
I just wanted to "protect" the photos on one thread, not on the entire forum. As I mentioned, I tried using a "no right click" script, but it does not work for some reason. And that is why I asked if there is another "script" that might work on my Forumotion forum.
It appears that Forumotion does not recognize the "no right click" script.
It appears that Forumotion does not recognize the "no right click" script.
itoh- Forumember
- Posts : 203
Reputation : 0
Language : english
Location : Japan
Re: Protecting photos
Try this one,
ACP >> Modules >> JS management.
- Code:
<SCRIPT TYPE="text/javascript">
<!--
//Disable right click script
//visit http://www.rainbow.arch.scriptmania.com/scripts/
var message="Sorry, right-click has been disabled";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")
// -->
</SCRIPT>
ACP >> Modules >> JS management.
Re: Protecting photos
CJ11™ wrote:Try this one,
- Code:
<SCRIPT TYPE="text/javascript">
<!--
//Disable right click script
//visit http://www.rainbow.arch.scriptmania.com/scripts/
var message="Sorry, right-click has been disabled";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")
// -->
</SCRIPT>
ACP >> Modules >> JS management.
========
Thank you. But I already used that script, and Forumotion did not accept it.
itoh- Forumember
- Posts : 203
Reputation : 0
Language : english
Location : Japan
Re: Protecting photos
Just add this much code in the JS Management.
- Code:
var message="Sorry, right-click has been disabled";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")
Sanket- ForumGuru
- Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai
Re: Protecting photos
Sanket wrote:Just add this much code in the JS Management.
- Code:
var message="Sorry, right-click has been disabled";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")
Thank you kindly, but how do I add that "Just add this much code in the JS Management."
Where do I add that code in the one thread whee I want to protect the photos? I looked in Edit for that thread but do not see anything mentioned for 'JS Management.'
As I mentioned, I only want to protect the photos in only one thread (where the photos are posted).
Or is there one place where I can enter that code that would "protect" everything on my forum?
(I m fairly new at this and that is why so many questions.)
itoh- Forumember
- Posts : 203
Reputation : 0
Language : english
Location : Japan
Re: Protecting photos
ACP >> Modules >> JS Management >> Create a new one >> Placement : In all pages
Will refrain from right clicking inside the whole forum.
Will refrain from right clicking inside the whole forum.
Re: Protecting photos
CJ11™ wrote:ACP >> Modules >> JS Management >> Create a new one >> Placement : In all pages
Will refrain from right clicking inside the whole forum.
Thank you. Would this be the correct page?
HTML & JAVASCRIPT Javascript codes management Add a Javascript Code
Title: (Would I type "Right Click Disabled" in this box?)
Placement: (Check) "In all the pages"
And then add the following into the "Javascript code" box?
var message="Sorry, right-click has been disabled";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")
If for some reason it did not work, I could also delete all that info - correct?
itoh- Forumember
- Posts : 203
Reputation : 0
Language : english
Location : Japan
Re: Protecting photos
Ah, there is one way to stop it from happen with guests.
ACP >> General >> Categories & Forums >> >> Permission [Tab] >> See images in the messages : Members.
ACP >> General >> Categories & Forums >> >> Permission [Tab] >> See images in the messages : Members.
Re: Protecting photos
CJ11™ wrote:Yes,
Exactly like that. Yes, if it doesn't work, you can delete the JavaScript.
Thank you. Did that and now when right click is done, nothing pops-up (like the properities box, etc) as happened before. I thought a message might pop-up stating "right click disabled." But that is okay.
It didn't work until I clicked on the "Enable Javascript code management." I clicked "YES" and then it worked.
itoh- Forumember
- Posts : 203
Reputation : 0
Language : english
Location : Japan
Re: Protecting photos
Is this solved then?
Sanket- ForumGuru
- Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai
Similar topics
» Protecting editor template
» URGENT: Password protecting a forum
» Hiding Content ( Reply to See ) / Password Protecting a Forum
» photos
» size photos
» URGENT: Password protecting a forum
» Hiding Content ( Reply to See ) / Password Protecting a Forum
» photos
» size photos
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum