The pictures and text displayed on our web-site are very important to us. Is there anyway to keep others from copying them? www.prstin.com
Can I protect data and pictures from being copied?
Collapse
X
-
Re: Can I protect data and pictures from being copied?
using BV FTP, if you look at the permission of a file,
by selecting and clicking right button of your mouse and
looking at properties of the file, the permission should be set
at 755 (Octal)- 111 101 101 - (binary). Play with it.
It says
Owner Group Public
111 101 101 binary
Comment
-
-
Re: Can I protect data and pictures from being copied?
Hello,
If you right click in blue voda (to the right of your page)
Choose "Page HTML" option
Click on the tab "End of Page"
Copy and paste the following script
<script language="JavaScript1.2">
var clickmessage="Right click disabled on images!"
function disableclick(e) {
if (document.all) {
if (event.button==2||event.button==3) {
if (event.srcElement.tagName=="IMG"){
alert(clickmessage);
return false;
}
}
}
else if (document.layers) {
if (e.which == 3) {
alert(clickmessage);
return false;
}
}
else if (document.getElementById){
if (e.which==3&&e.target.tagName=="IMG"){
alert(clickmessage)
return false
}
}
}
function associateimages(){
for(i=0;i<document.images.length;i++)
[I]document.images.onmousedown=disableclick;
}
if (document.all)
document.onmousedown=disableclick
else if (document.getElementById)
document.onmouseup=disableclick
else if (document.layers)
associateimages()
</script>
When published if someone right clicks they will get a message stating "right click disabled on images". There could well be ways around it, but I am no expert.
Regards
Tim
Comment
-
-
Re: Can I protect data and pictures from being copied?
Yes there are ways around it.. just view source and you can get the path to the image.
Karen
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