Help with protecting pdf files

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Re: Help with protecting pdf files

    What I do is put the files into a fold that has no links to it. Doesn't matter
    if it's inside the site or above it. Next, after authenticating the user, you
    copy the one file he is authorized to see into a TEMP folder and give the file
    a temporary, very long, random filename and provide a hyperlink to that file.
    This prevents him from rummaging through the temp folder trying different
    filenames until he gets a hit. Then you crank up a scheduled task that daily
    deletes all files that have been in the temp folder more than 24 hours.

    BigDMorris Guest

  2. Similar Questions and Discussions

    1. Protecting swf files from being decompiled
      At the end of the day, our flex apps are deployed as swf files which have the potential to be decomplied and thereby our intellectual properties...
    2. protecting SWF files
      Kevin Towes steps through the process protecting swf files on a Flash Comm server in his book "Macromedia Flash Communication Server MX" -...
    3. Protecting files with PHP
      Hi there! I'm developing an application to which you can upload files. Right now the destination folder of those files is at /public_html/files...
    4. [PHP] Protecting files with PHP
      Place a .htaccess in the files directory denying all access to it, and also possibly redirecting them to a login page. However since your users...
    5. Protecting files while written ...
      Hi, Let's say I have a process that creates file and write data into it. The process will create the file with perm 755 ( in result of a default...
  3. #2

    Default Re: Help with protecting pdf files

    The way we ended up solving this problem was using the cfheader and cfcontent
    tags with a display.cfm page that pushed the actual path to the file into the
    <href> tag of the link. Our customers never see the path to the file we are
    protecting.

    All you files can be in a folder anywhere inside your site.

    jmoshier Guest

Posting Permissions

  • You may not post new threads
  • You may 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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139