Download-scriptto DL files outside the public_html folder

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • theSammy95@gmail.com

    #1

    Download-scriptto DL files outside the public_html folder

    I have a small Linux webserver, and want to find a (php) script
    that lets my users download files located outside of the public_html
    folder

    Anyone that knows how or have a readymade solution?

    Sammy

  • John Dunlop

    #2
    Re: Download-scriptto DL files outside the public_html folder

    theSammy95@gmai l.com:
    I have a small Linux webserver, and want to find a (php) script
    that lets my users download files located outside of the public_html
    folder


    --
    Jock

    Comment

    • Sanders Kaufman

      #3
      Re: Download-scriptto DL files outside the public_html folder

      theSammy95@gmai l.com wrote:
      I have a small Linux webserver, and want to find a (php) script
      that lets my users download files located outside of the public_html
      folder
      >
      Anyone that knows how or have a readymade solution?
      >
      Sammy

      How about something like this:
      "http://server/download.php?di r=root&file=com mand.com"

      Then use the PHP file system features from within
      Download.php to send the file to the requester.

      Comment

      Working...