laravel-plupload
laravel-plupload copied to clipboard
Plupload package for Laravel 5
Fix for Laravel 6 and 7 Fix bug in src/File.php. The uploaded chunk file was deleted before callback run.
Hi, When do you support Laravel 6? best, Sebastian
According to the `Jenky\LaravelPlupload\Contracts\Plupload`-contract which `Jenky\LaravelPlupload` is implementing, the `file`-method should not return any value. Actually it does return the result of `Jenky\LaravelPlupload\File::process` which itself is returning array.
File `/src/File.php` line 117: ``` $file = new UploadedFile($filePath, $originalName, 'blob', count($filePath), UPLOAD_ERR_OK, true); ``` count($filePath) may report error in php7.3 or upper, because count parameter must be array or...
when uploading a single file and using the provided Plupload::file method the $upload object return to closure is deleted (unlinked) before calling the closure, this way files cant be moved...
Hi, I'm using laravel-plupload & upload files to dropbox, for 'chunk_path' => storage_path('plupload') files is not uploaded to dropbox. I'm using league/flysystem-dropbox package to upload files in dropbox. have any...
can you give me simple implementation plupload in laravel5 full project? im already search in google and youtube, doesnt found what i looking for. thanks
I upload large file with chank enable after finish upload $file->getClientOriginalName() has .part suffix. ls -l total 1268984 -rw-r--r-- 1 root root 439463 Oct 1 21:06 jquery-ui-1.12.1.zip.part -rw-r--r-- 1 root...