Im building a "premium" section of my site and Im in a need to give download access to files in a remote directly (on a different server), to users with special privileges (accounts stored in mysql db). My site is coded in php/mysql so a php solution would be great.
|
|
|
|
|
|
|
Here's what I would do:
Note: On server B don't keep PHP running while serving the file but use the X-Sendfile header instead. Otherwise the download might stop after the PHP max execution time. |
||
|
|
|
|
As @pxl said, you need to check for authorization and then output the correct mime type as an HTML header (like he said: Also, once you are done with that, you will need to output the actual contents of the file and it's size (in bytes) as such:
Just make sure to store the file in a directory that is not accessible from the web. |
||
|
|
|
I'm used to doing this in ASP.NET where it's built in, but this article seems to chronicle your exact situation. |
||
|
|
|
|
direct all download links to a php file that'll do all the credential checking. you can call the file download.php pass along parameters via cookies, get, post, session, or whichever manner you verify privileges. once credentials are verified, you can send an appropriate header. if it's an image, the header would be i'm assuming that you also own this remote server. some useful links: |
||||||
|
