23 / resumable.js

A JavaScript library for providing multiple simultaneous, stable, fault-tolerant and resumable/restartable uploads via the HTML5 File API.
MIT License
4.65k stars 611 forks source link

internal server error in last chunk #608

Closed MelikaSharafi closed 1 year ago

MelikaSharafi commented 1 year ago

Hi, I have a file larger than 1 MB, when I upload one of the last chunks (usually the last chunk) it gives an error of 500 (inernal server error)

my config : let resumable = new Resumable({ target: "{{route('user.upload')}}", query:{_token:"{{ csrf_token() }}",file_type: value.name} , chunkSize: 110241024, // default is 110241024, this should be less than your maximum limit in php.ini // prioritizeFirstAndLastChunk: true, forceChunkSize: true, headers: { 'Accept' : 'application/json' }, testChunks: false, throttleProgressCallbacks: 1, });

MelikaSharafi commented 1 year ago

The problem was not in this package :/

764653880 commented 6 days ago

The problem was not in this package :/