php - Unable to download file using codeignitor -
this down loader controller. first time works properly. opens save popup , able download required file, next time shows direct directory listing. <?php class download extends controller { function download(){ parent::controller(); $this->load->helper('download'); echo "i in constructor"; } function index(){ $file = realpath("download")."\\profile.doc"; echo "i in index."; exit; if (file_exists($file)) { header('content-description: file transfer'); header('content-type: application/octet-stream'); header('content-disposition: attachment; filename=' . basename($file)); header('content-transfer-encoding: binary'); header('expires: 0'); header('cache-control: must-revalidate, post-check=0, pre-check=0'); header('pragma: public'); header('content-le...