how to block a user downloading a file?

Ask a Question related to PHP Development, Design and Development.

  1. #1

    Default how to block a user downloading a file?

    hi,
    how to block a user downloading a file?
    eg : when a user enter an address like
    [url]http://localhost/downloads/testfile.cab[/url]
    i want to forward him to an other address like
    [url]http://localhost[/url]

    i'm PHP newbie thanks for help.
    Fatih Olcer Guest

  2. Similar Questions and Discussions

    1. .net security logs out user occassionaly when downloading large pdf files
      Can anyone think why this might be happening: I have .net forms security set up and running successfully. There are several directories that are...
    2. Downloading file
      i want to click on a link which then displays a file on the cd in word, how can i make this file able to be downloaded on the users computer? i...
    3. Downloading a file from a CD
      Hi, Im using Director MX. On my CD, I want people to be able to click on an option that starts to download a video from my CD to the users...
    4. Getting a block of data from with a text file
      Hi All, Any ideas on how to read a txt file from asp and get it to grab one block of information? Sample txt file; Windows IP Configuration...
    5. find physical blocks/disks, mapped from Oracle file# and block#, block corruption
      Hello "lopera" <prlopera@techie.com> schrieb im Newsbeitrag news:3E1C7C00.9090402@techie.com... I think that we need a bit more data here....
  3. #2

    Default Re: [PHP] how to block a user downloading a file?

    fatih olcer wrote:
    >hi,
    >how to block a user downloading a file?
    >eg : when a user enter an address like
    > [url]http://localhost/downloads/testfile.cab[/url]
    >i want to forward him to an other address like
    > [url]http://localhost[/url]
    >
    >i'm PHP newbie thanks for help.
    >
    >
    >
    hi,
    you have to use this code :
    <?
    header ("Location: http://localhost");
    ?>
    Tassos T Guest

  4. #3

    Default Re: [PHP] how to block a user downloading a file?

    Hello,

    Since this is a cab file, i don't think you will be able to modify it.
    Why don't you put the cabs outside the document root? there was a
    discussion on doing something similar just this week on this very list.

    If you insist on having the stuff on the document root you can use
    ..htaccess files with the appropriate allow / deny directives. but i have
    a hunch you may be on windows :-)

    best regards
    raditha



    Tassos T wrote:
    > fatih olcer wrote:
    >
    >> hi,
    >> how to block a user downloading a file?
    >> eg : when a user enter an address like
    >> [url]http://localhost/downloads/testfile.cab[/url]
    >> i want to forward him to an other address like
    >> [url]http://localhost[/url]
    >>
    >> i'm PHP newbie thanks for help.
    >>
    >>
    >>
    > hi,
    > you have to use this code :
    > <?
    > header ("Location: http://localhost");
    > ?>
    >

    --
    [url]http://www.raditha.com/php/progress.php[/url]
    A progress bar for PHP file uploads.
    Jabber@Raditha.Com 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