CodeIgniter Forums
Force to download file - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=11)
+--- Thread: Force to download file (/showthread.php?tid=70068)



Force to download file - omid_student - 02-15-2018

Hi
I need to force download any for for download
Actually i dont want to play audio or show picture in browser and user have to download it


RE: Force to download file - InsiteFX - 02-15-2018

Force Download:

PHP Code:
$file "filename.ext";

// Quick check to verify that the file exists
if( !file_exists($file) ) die("File not found");

// Force the download
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header('Pragma: private');
header("Content-Disposition: attachment; filename="" . basename($file) . """);
header("Content-Length: " filesize($file));
header("Content-Type: application/octet-stream;");

readfile($file); 



RE: Force to download file - omid_student - 02-15-2018

(02-15-2018, 10:49 AM)InsiteFX Wrote: Force Download:

PHP Code:
$file "filename.ext";

// Quick check to verify that the file exists
if( !file_exists($file) ) die("File not found");

// Force the download
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header('Pragma: private');
header("Content-Disposition: attachment; filename="" . basename($file) . """);
header("Content-Length: " filesize($file));
header("Content-Type: application/octet-stream;");

readfile($file); 

Thanks