Welcome Guest, Not a member yet? Register   Sign In
forcing file download location dialog rather than viewing linked file?
#2

[eluser]bretticus[/eluser]
You need to set the proper headers on the page that renders the file:

Code:
<?php
header('Content-Type: text/plain');
header('Content-Disposition: attachment;filename="youfile.txt"');
header('Cache-Control: max-age=0');
?>

CodeIgniter's Download Helper does this for you also.


Messages In This Thread
forcing file download location dialog rather than viewing linked file? - by El Forum - 07-22-2010, 12:18 AM



Theme © iAndrew 2016 - Forum software by © MyBB