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?
x-sendfilehas 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:37freada part of the file,echoto client, repeat; instead offile_get_contentswhich can be problematic for huge files. – Piskvor Aug 25 '11 at 9:42