Quantcast
Channel: PHP Website Development » BTW
Viewing all articles
Browse latest Browse all 10

Protected File Download Script. Almost there

$
0
0

I have a file that users will purchase via paypal, clickbank and paydotcom. I have to host the file’s download page on my server.
I’ve placed the file in a directory outside my public_html folder. The folder is on the same level as public_html and called “download” for example.
The script below is supposed to do that, but I have two problems with it…
1) It doesn’t seem too secure. just check for a payment confirmation token on the querystring?
2) I can’t the $path variable to point to the download folder without including my site.com public folder in the path. For example, when I echo $path, I get
/home/myuser/public_html/mysite.com But I need it to resolve to
/home/myuser/download/myprotectedfile.zip I’m sure there is a more secure or clever way to do this, so I’m asking…
Download here ?> The problem I’m having in getting this to work is the the value of $path includes my site.com reference, but the download directory is outside site.com. I need to get a reference up a level in order to point to the directory that holds the download file.
Also, as I stated earlier, I’m not sure how to do this (other than checking for an expected querystring value in a manner that’s secure)
Thanks in advance!
……………………………………

You can use the parent directory shortcut ../ in your $path or the dirname function like:
$parent_dir = dirname( dirname( __FILE__ ) ); // first dirname is the directory of this file, second goes up one level, etc. BTW, beware of indicating the path in your URL, one could read other files (like configuration files or ohter private files) by changing it to download.php?download_file=../../private/bank_certificate.pem. You should use realpath to get the absolute path of the file and compare it to an “authorized for download” file list.
……………………………………

You just need to consider the path like a normal directory path, not a web one. so to go up a level simply “../” e.g.
if you structure is like this
/path2file/inhere.pdf /public_html/download.php
the path to the file would simply be from download.php “../path2file/inhere.pdf”
……………………………………

well if public_html is your doc root then you should be able to get the path to download would be
realpath($_SERVER[DOCUMENT_ROOT].’/../download’);
……………………………………

Custom coding may not be the best solution these days for a file download script. Check out Drupal which has file download modules, that can be integrated with its Clickbank module as well: http://drupal.org/project/clickbank_ipn


Viewing all articles
Browse latest Browse all 10

Trending Articles