+ Reply to Thread
Results 1 to 7 of 7

Thread: Can I protect data and pictures from being copied?
      
   

  1. #1
    prstin is offline Private
    Join Date
    Jul 2009
    Posts
    1

    Default Can I protect data and pictures from being copied?

    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

  2. #2
    Join Date
    Feb 2006
    Location
    Earth
    Posts
    8,719

    Default Re: Can I protect data and pictures from being copied?

    If its on the web, its there for all.
    You can watermark to make it a little more difficult with the images.

  3. #3
    wysiwyg4 is offline Major
    Join Date
    Nov 2007
    Posts
    481

    Arrow 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

  4. #4
    timmyj is offline Private First Class
    Join Date
    Jul 2009
    Posts
    6

    Default 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

  5. #5
    Karen Mac's Avatar
    Karen Mac is offline General
    Join Date
    Apr 2006
    Location
    X marks the spot
    Posts
    8,354

    Default 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
    07031847328 / United Kingdom

    ------------------------

    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)



  6. #6
    Armands1991 Guest

    Default Re: Can I protect data and pictures from being copied?

    Or in FireFox - Tools -> Page info -> Multimedia. And all images can be downloaded. Only thing what you can do, is watermark them, as Collectors-info said. There are no other ways to protect page.

  7. #7
    Join Date
    Feb 2006
    Location
    Earth
    Posts
    8,719

    Default Re: Can I protect data and pictures from being copied?

    Would also avoid the right click script as it stops your visitor from using other functions. (Like bookmarking you)

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49