Welcome Guest, Not a member yet? Register   Sign In
Image download problem
#1

[eluser]veledrom[/eluser]
Hi,

I am using this function to download an image that I uploaded before by using Codeigniter. Function successfully downloads it with same name but when I try to open it, I get an error which says "Cannot be opened... file format... is not supported..."

Please help.

Thanks

CONTROLLER:

Code:
public function do_downloadfile()
    {
        $this->load->helper('download');
        // $filepath below produces http://localhost/CI/upload/82df53aae33450324bd26cd880d678b5.png
        $filepath = base_url() . 'upload/' . $this->uri->segment(3);
        $data = file_get_contents($filepath);
        $name = $this->uri->segment(3);
        
        force_download($name, $data);
    }

VIEW:

Code:
anchor('fileupload/do_downloadfile/82df53aae33450324bd26cd880d678b5.png', 'Download
');
#2

[eluser]iversonchen[/eluser]
i am learning the PHP, still can not understand this questions. i have to learn more.




Theme © iAndrew 2016 - Forum software by © MyBB