Symfony\Component\HttpFoundation\File\Exception\FileException: The file "dyu3fosyl7mDpMIAoyAJ" was not uploaded due to an unknown error. in /var/www/laravel/vendor/symfony/http-foundation/File/UploadedFile.php:236
Stack trace:
#0 /var/www/laravel/app/Http/Controllers/WEB/Files.php(130): Symfony\Component\HttpFoundation\File\UploadedFile->move('/var/www/larave...', '/var/www/larave...')
#1 /var/www/laravel/app/Jobs/Download.php(84): App\Http\Controllers\WEB\Files->saveFile(Object(Illuminate\Http\UploadedFile))
#2 [internal function]: App\Jobs\Download->handle()
#3 /var/www/laravel/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(32): call_user_func_array(Array, Array)
..................
Looks like a file extension error per the Symfony framework:
case UPLOAD_ERR_EXTENSION:
throw new ExtensionFileException($this->getErrorMessage());
But, the output error message is being transformed to a generic one due to $errors[$errorCode} not being set. Do you have your app env set correctly (assuming you are in local dev with debug set to true).
$message = isset($errors[$errorCode]) ? $errors[$errorCode] : 'The file "%s" was not uploaded due to an unknown error.';
The actual error message should say: "File upload was stopped by a PHP extension".
UPLOAD_ERR_EXTENSION
Value: 8; A PHP extension stopped the file upload. PHP does not provide a way to ascertain which extension caused the file upload to stop; examining the list of loaded extensions with phpinfo() may help. Introduced in PHP 5.2.0.