![]() |
Dynamic Downloads in PHP
I want to create a script which will allow people to download files, but through dynamic links. For example, instead of using a static link such as example.com/files/file1.zip, where hot-linking can occur, I would like to do something like example.com/files/filedownload.php?file=file1, in which I can do checks to make sure the person downloading is logged in to vBulletin and stuff.
I don't know the name of the process of generating dynamic downloads, so I can't find anything on php.net. All I can think of doing is changing the header to the mime type of the file, but I don't know then how to start the download without the user having to click on something. I don't want to redirect to the static file location either, as this is a security risk. Any help would be fab. Cheers. |
I have a script that does almost what you described - except for the logged in to vB thing (it checks an own login).
If it would help you I could just send you that script so you can "walk" through it and see how it does what. IMHO that's always the best way to get such questions answered. But a short one anyways :D If you want to send a file, rather then a HTML page, you could use this block of code BEFORE you output anything else: Code:
header ( "Content-Type: application/octet-stream"); // or whatever mime-type is appropriate |
Great, I'll give that a shot. Cheers.
I want to allow people to download .zips and stuff, not HTML pages. I can do all of the vBulletin checks and stuff, I just didn't know how to send files like that. Thanks again. If I have problems using the script, I'll know where to look ;) EDIT: I have built a script using the above info, but when the file is downloaded it is always 0 bytes in length. This is the script: PHP Code:
|
You are putting the path of your file in $file_location but in the readfile() call you use $filepath - try using $file_location there as well....
|
Haha, I'm an idiot. It worked.
Thanks very much :) I'd give you reputation if I could, and if it actually had any effect. |
All times are GMT. The time now is 09:27 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|