Announcement

Collapse
No announcement yet.

Can I protect data and pictures from being copied?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • 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
    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.
    Regards Chris.

    Collectables, Collecting, collectors-info.com

    www.chrismorris.co.uk

    House build project

    Comment


    • #3
      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
      Doable Personal Finance

      Comment


      • #4
        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


        • #5
          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


          • #6
            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.

            Comment


            • #7
              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)
              Regards Chris.

              Collectables, Collecting, collectors-info.com

              www.chrismorris.co.uk

              House build project

              Comment

              Working...
              X