|
-
Mar 13th, 2002, 06:40 AM
#1
Thread Starter
Fanatic Member
Stop downloading my PICTURES!!!
Is it possible to disable options on the clients menu so that they would not be able to download any of the sites pictures etc. ? If so how?
-
Mar 13th, 2002, 06:55 AM
#2
Fanatic Member
I dont think there is any fully effective way of doing this.
You can start by searching a search engine to find the code to disable the right click button so the client cant view source/save picture as... BUT this leaves the view source menu.
To get around this you can force you site to disable Internet Explorers menus but this takes away the clients navigation right.
Even if you do this clients using netscape will still be able to leech as it only works in Internet Explorer.
You can also using software such as dreamweaver and something free like 1st Page to leech the url of your site and view the code.
I'd advise using the first method as users who dont know what they are doing but still want to download your pictures wont be able to figure out how to do it.
-
Mar 13th, 2002, 06:56 AM
#3
Fanatic Member
one thing.. there is no completely fool proof way of doing this as unless the user is using a JavaScript enabled browser then it won't work..
Older browsers will ignore any "No Right Click" code that you use.
Chris
-
Mar 13th, 2002, 06:58 AM
#4
Fanatic Member
<script>
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("Sorry, you do not have permission to right click.");
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;
</script>
Try that .. it will work in browsers that are 4.0+
Chris
-
Mar 13th, 2002, 07:34 AM
#5
Black Cat
Don't even bother - they can always use a direct connection to your server to get the picture or do a screen capture. All disabling the right click will do is annoy people who use it the navigate, copy/paste, etc. And I believe IE6 will stick a button to save the image if the size is big enough anyway.
Josh
Get these: Mozilla Opera OpenBSD
I have books for sale: "MCSD in a Nutshell" and "VB Distributed Exam Cram" - PM me for details. Will also trade for a decent ATX Pentium 2 MB/CPU/RAM combo.
-
Mar 13th, 2002, 08:01 AM
#6
Fanatic Member
JoshT = the man of reason
Its a shame tho.. there must be a way of stopping them .. but as you said.. they could just hook directly to the server...
One way if they are art images is to put COPY or SAMPLE on them to stop people re-using them.
-
Mar 13th, 2002, 09:54 AM
#7
Addicted Member
Yeah, there are always ways around any methods but you can do things to make it a bit more difficult. Things like slicing images up into loads of small bits, putting them in a table background and putting a transparent gif or something on top. But screen grabs will always be possible.
-
Mar 13th, 2002, 10:06 AM
#8
Fanatic Member
That is very true.. oh well .. so much for protecting ones work
-
Mar 13th, 2002, 10:06 AM
#9
Black Cat
Yeah, but some people would take making it more difficult as a challenge.
Josh
Get these: Mozilla Opera OpenBSD
I have books for sale: "MCSD in a Nutshell" and "VB Distributed Exam Cram" - PM me for details. Will also trade for a decent ATX Pentium 2 MB/CPU/RAM combo.
-
Mar 13th, 2002, 10:10 AM
#10
Fanatic Member
You could always make a form for people to fill in and you could email them the art work.
-
Mar 13th, 2002, 10:11 AM
#11
PowerPoster
Originally posted by JoshT
All disabling the right click will do is annoy people who use it the navigate, copy/paste, etc.
indeed. My internet bank site disables it and it annoys the hell out of me.
I've also had pictures stolen from my sites but there's little you can do about it so don't concern yourself. If you don't want others to have it, don't put it on the net is the best advice.
-
Mar 13th, 2002, 10:33 AM
#12
Fanatic Member
Originally posted by chrisjk
If you don't want others to have it, don't put it on the net is the best advice.
Exactly
-
Mar 13th, 2002, 01:20 PM
#13
or take your pictures adn make then flash the .swf. tehre is a program that will convert jpeg to flash. other than that I agree with everybody else. put them up on the internet it will get taken.
-
Mar 13th, 2002, 04:18 PM
#14
PowerPoster
LOL, has anyone looked at their CACHE?

fool proof way to get images
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
-
Mar 13th, 2002, 05:04 PM
#15
Fanatic Member
Yeah, good point.
I went to college with someone who used to raid his cache every few days to get images
-
Mar 13th, 2002, 07:30 PM
#16
PowerPoster
yeah, what i think that many people don't realize is that when you view a webpage, the files are actually local. a browser is basically a sophisticated download program
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
-
Mar 13th, 2002, 09:22 PM
#17
but that can be stopped. you can make it so the page is not cached.
-
Mar 14th, 2002, 01:03 AM
#18
Thread Starter
Fanatic Member
I think i'll go the flash root. Thanks for the input guys!
-
Mar 14th, 2002, 03:35 AM
#19
Fanatic Member
Buggerit... never thought of Flash... D'oh!!!
-
Mar 14th, 2002, 04:18 AM
#20
Originally posted by scoutt
but that can be stopped. you can make it so the page is not cached.
How do you NOT cache a page?
-
Mar 14th, 2002, 08:41 AM
#21
Originally posted by mendhak
How do you NOT cache a page?
easy
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
but I think it will only work for Netscape. can't remember.
-
Mar 14th, 2002, 08:51 AM
#22
Fanatic Member
Theres a surprise.. won't work in IE LOL
-
Mar 14th, 2002, 09:52 AM
#23
PowerPoster
how is making it an swf ganna help? It won't whilst the print screen button is around AFAIK
-
Mar 14th, 2002, 11:49 AM
#24
Black Cat
Even if it's not cached on disk, the image is still in memory somewhere...
Of course, I'd just run a packet sniffer and intercept the HTTP communication...
Honestly, just put a copyright disclaimer on the image if its that important, and leave the rest for the lawyers. The pages that I've seen that put the most effort into stopping people from stealing images are ones that have no permission to use the images in the first place. And to make it worse, I'm sure the author has a bunch of illegal mp3s or pirated software on their own computer.
Josh
Get these: Mozilla Opera OpenBSD
I have books for sale: "MCSD in a Nutshell" and "VB Distributed Exam Cram" - PM me for details. Will also trade for a decent ATX Pentium 2 MB/CPU/RAM combo.
-
Mar 15th, 2002, 01:03 AM
#25
Thread Starter
Fanatic Member
Is there any sort of governing body that decides on internet law? If there is, where can I find it?
-
Mar 15th, 2002, 04:51 AM
#26
Fanatic Member
The w3c may help but that won't necessarily help you as the law can't stop people from downloading your images.
-
Mar 15th, 2002, 06:59 AM
#27
Thread Starter
Fanatic Member
Sure, it won't stop people from downloading my pictures. I just want a general does and don'ts. What can I copy, what can't I etc.
-
Mar 15th, 2002, 07:09 AM
#28
Thread Starter
Fanatic Member
What about using viruses as a deterrent?
I have downloaded a site before and got a virus. This was in my early days, I didn't even know I was downloading the site.
Is it possible to attach viruses to the pictures?
-
Mar 15th, 2002, 08:21 AM
#29
Fanatic Member
What's so important about these images.. Why the hell would you want to give someone a virus just because they like some of your work.. Personally I wouldn't use viruses and if you happened to have one of your viruses infect a large company you will get your ass sued!
Why the hell are you showing your images online if you are so determined for people not to steal them?
-
Mar 15th, 2002, 08:28 AM
#30
Frenzied Member
Originally posted by shunt
I think i'll go the flash root. Thanks for the input guys!
Make sure you protect your movie from import!
Cuz if you don't people will still be able to inport
you .swf into flash from their cache!
And i agree, that the best way of doing it!
But what if you do something like:
<img src="somepath/somefile.asp">
That way you would'nt be able to see the path of the files and
then you put a layer on top so that nobody can right click save!
The only thing left is the print screen, that's when you put a watermark!!
You can even put the watermark in the layer that sit on top of your
picture!
Have fun!
-
Mar 17th, 2002, 11:57 PM
#31
If you are too worried about your picture then you can place them in special control which disables the right clicks and disables print screen aswell. I had a link of such a control i will post it here if u are interested, not sure how much it costs though.
As for using flash, well last time i checked it takes few second to crack the protect features in Flash 4), havent tried it in Flash 5 i am sure it wont be hard.
Like the other said its kind of pointless to stop people, if someone wants a picture badly there is alyways a way around.
[VBF RSS Feed]
There is a great war coming. Are you sure you are on the right side? Atleast I have chosen a side.
If I have been helpful, Please Rate my Post. Thanks.
This post was powered by : 
-
Mar 18th, 2002, 12:47 AM
#32
Thread Starter
Fanatic Member
sebs seems to have it all worked out!
chrismitchell,
I am thinking about a site that deals with geographic maps. I want the maps available online for the general public to view, but I don't want them to be able to download them because my source sells them. I want to keep my source happy while still fulfilling my needs. Point taken about the virus though. I would not have done that anyway.
-
Mar 18th, 2002, 01:01 AM
#33
Thread Starter
Fanatic Member
I realise that anything on the net can be broken given a certain amount of effort. However, my audience is only just computer literate. The site is aimed at the general South African public, and trust me, not many will go through the hassle of trying to crack any protection I put on files. Most actualy wouldn't have a clue where to start.
Those that do, I'm not too worried about anyway.
-
Mar 18th, 2002, 06:32 AM
#34
Fanatic Member
I meant no offence by the Virus comment so I apologise if it came across that way...
I wish you luck with the web site
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|