Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to programmatically initiate file downloads using PHP along with resume-support

These files are heavy. So IO buffering like below or caching is not an option

$content=file_get_contents($file);
header("Content-type: application/octet-stream");
header('Content-Disposition: attachment; filename="' . basename($file) . '"');
header("Content-Length: ". filesize($file));
echo $content;

The only viable option I found so far is the Apache module X-sendfile. Unfortunately our hosting service won't install mod_xsendfile - so we are looking for other hosting providers, but that's another story.

We are using LAMP and the yii framework. What are possible alternatives?

share|improve this question
Well actually, x-sendfile has been made for that. If your provider does not offer this, it will most certainly not offer any of the (available?) alternatives which as well must integrate with the server. – hakre Aug 25 '11 at 9:37
3  
possible duplicate of Resumable downloads when using PHP to send the file? - note that you may want to fread a part of the file, echo to client, repeat; instead of file_get_contents which can be problematic for huge files. – Piskvor Aug 25 '11 at 9:42
@hakre: I was thinking on the lines of a PHP-only solution, whereby the URL request is first trapped by PHP where I log the request, check if the file exists and then pass on the request to Apache – Saptarshi Biswas Aug 25 '11 at 9:46
2  
have you thought about using a CDN that supports some kind of ACL? e.g., see here – ldg Aug 25 '11 at 18:15
1  
@Piskvor: well actually I wrote an HTTP server so I know it means a lot. try to saturate a 10G interface and you'll see the difference (copy 1 GByte of data / second, or 2 if it's a module like PHP. Do you see the problem? Your RAM is not going to be fast enough. also, you will kill your CPU cache by having multiple copies of the same data... anyway, the duplicate question solves the problem, so it's still better than nothing. – Karoly Horvath Aug 25 '11 at 20:22
show 10 more comments

2 Answers

Will your hosts allow you to install something like Perlbal (http://www.danga.com/perlbal/) as a proxy in front of apache?

Perlbal allows you to offload file-serving to it with a very similar approach to x-sendfile (using X-REPROXY-URL: /path/to/a/local/file.jpg), and it's pretty high-performance. (LiveJournal and Flickr both use(d) it. It would require you to run apache on a different port, though, and run perlbal on port 80, which your hosting provider might not like. Of course, you could do the same thing with something like nginx if you didn't fancy perlbal.

share|improve this answer
No, unfortunately perlbal is not allowed. At any rate, I have moved on to a dedicated server so I can use x-sendfile among other things – Saptarshi Biswas Dec 2 '11 at 16:40

You could emulate that by reading the request headers and output the content in 4kb steps with fopen, fseek, fread and so on. See also the possible request headers here. You should also implement an ETag to let the client identify that the file has not changed.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.