Get folder path instead of url path |
i i want download file from server , i create a link:
Code: <a href="<?=WRITEPATH.'uploads/report/'.$doa->id.'/'. $doa->numero ?>" class="btn btn-info ms-3" download>DOWNLOAD FILE</a> instead of : Code: /home/uz2lnhpx/domains/my_subdomain/public_html/codeigniter/writable/uploads/report/32/1003_General.xlsx
You cannot reach WRITEPATH from public folder. You should do this instead:
PHP Code: public function downloadReport($id, $numero)
Create new folder in public/uploads, set 777 chmod. Done.
From the browser, you can only see files from the public/*** folder. Not writable, vendor, tests,...
There is another problem if you change the save path to public/uploads? |
Welcome Guest, Not a member yet? Register Sign In |