I was migrating my laravel app to laravel 9. Then I notice the response()->download() now returning incorrect filename and mime-type.
$headers = [
'Content-Description' => 'File Transfer',
'Content-Type' => 'application/zip',
];
return response()
->download($result,'test.zip',$headers)
->deleteFileAfterSend(true);
On my browser it will returned with filename as "file.txt", but the content are correct, renaming file.txt to file.zip then the file accessible.
Additional info :
- I did run debug, and in Response::sendHeaders() every header item sent correctly includes the Content-Disposition: attachment;filename=test.zip
- before system upgrade : PHP 7.3, Laravel 7.30
- after upgrade : PHP 8.2, Laravel 9.5
- [update] this issue happened only when running on server script (php artisan serve), meanwhile running on webserver (apache) returned filename correctly
I had similar issue where the browser tried various optimizations.
If you want the browser to just download, without fancy special treatment based on file-type, then try something like: