symfony: stream download

by prettyscripts on 2010-05-17 10:42:06 • Leave a comment »

phpsymfony

to download file the symfony way, add a download action and not to display layout unless there are errors. in /path/to/your/app/modules/your_module/actions/actions.class.php: public function executeDownload(sfWebRequest $request) { $file = Do… more »

Tags: download, php, symfony

php: stream download

by prettyscripts on 2007-11-27 22:42:37 • Leave a comment »

php

a general php code to download any type of file: header("Content-Type: application/octet-stream"); header("Content-Length: " . filesize($filename)); header("Content-Disposition: attachment; filename=\"$filename\""); readfile($filename); co… more »

Tags: download, header, php