How do I keep photos from being downloaded? I am wanting to add some photos that have been purchased to my website, but part of the agreement is to lock the photos so they can' t be downloaded. Can I do that in Blue Voda website builder? Or can it be done somewhere else? Thanks so much for your help!
How to keep photos from being downloaded?
Collapse
X
-
Re: How to keep photos from being downloaded?
If its on the web, then it can be got at by those who really want to....
Most browsers use a cache to store items from the web to save downloading the same things over again.
this means that one has only to look in the cache and voila, there they are............
-
-
Re: How to keep photos from being downloaded?
Although not entirely fool proof for real techy people here is a script that you can add to the html on your page properties, add between the head section,(where you right click on one of your pages, page properties, you will see html properties, add it in there.) This will deny right click from users ....
<script language="Javascript1.2">
// ***********************************************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: http://www.cgiscript.net
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( http://www.cgiscript.net/scripts.htm )
// ***********************************************
message = "Add your own message here, (mine says contact webmaster, you may want to say, copyrighted or something, (put it in between these quotes where I am writing now";
function NoRig***lick(b) {
if(((navigator.appName=="Microsoft Internet Explorer")&&(event.button > 1))
||((navigator.appName=="Netscape")&&(b.which > 1))){
alert(message);
return false;
}
}
document.onmousedown = NoRig***lick;
// -->
</script>
VodaHost
Your Website People!
1-302-283-3777 North America / International
02036089024 / United Kingdom
291916438 / Australia
------------------------
Top 3 Best Sellers
Web Hosting - Unlimited disk space & bandwidth.
Reseller Hosting - Start your own web hosting business.
Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)
Comment
-
Comment