Hi,
I try to understand how can I manage to upload mp3 files to S3.
This is for a small podcast application.
I have the following code
$filesystem->disk('s3')->put($podcast->filename, $request->file('podcast')->getClientOriginalName());
When I try with a basic .txt file or even an image it works.
But as soon as I try to upload a mp3 file the code run then after a few second it returns and redirects (normal behaviour).
When I check on my S3 console the file is correctly upload except it is a 26 bytes file instead of 3.3 mo...
What did I miss?
I googled a lot but didn't find a solution.
Thank you guys.