I'm trying to allowed download file from writable path in codeIgniter 4 this code don't match
helper('download');
// read file contents
//$data = file_get_contents(WRITEPATH.'uploads/'.$filename);
$data = file_get_contents(base_url().'/uploads/'.$filename, TRUE);
force_download($filename, $data);
I get this error : Call to undefined function
App\Controllers\force_download()
Thanks to help me
If you have a direct path for your file you can use
download()method from$responseoptionally you can use
setFileName()to set name for a file when sent to browserReference: Force File Download