Have you tried uploading small file?
Does it success?
If you are upload a large file, you may need to configure some settings.
https://www.tutorialspoint.com/how-to-upload-large-files-above-500mb-in-php
Can someone give me a hand with this issue please? What could be a real solution for this? I'am trying to upload videos to an VPS server. This is a short from my code:
//Get uploaded file
$file = $request->file('file_contents');
//Path to save file
$savePath = "clients/{$request->get('client')}";
//Store file in local
Storage::disk('local')->put("$savePath/uploads/{$file->getClientOriginalName()}",file_get_contents($file->getRealPath()));
Please or to participate in this conversation.