Questions tagged [resumablejs]

Resumable.js is a JavaScript library providing resumable uploads using the HTML5 File API. Use [resume-upload] for issues not regarding this library.

36 questions
4
votes
1 answer

Nginx+PHP7 slow POST requests

I created a page sending files to my server(ssd class vps on ovh) with chunked uploading. I am using Resumable.js(https://github.com/23/resumable.js) to achieve this with the php page they have as example on their github…
3
votes
0 answers

resumable js is triggering fileSuccess while the chunks are not getting assembled in the server

I am trying to upload a 400MB+ file to a server using resumable.js with pion/laravel-chunk-upload. It allows me to upload smaller files, without any error, but when I try uploading 400MB files, it just fails. Server side code : $receiver = new…
3
votes
2 answers

Cancel, Abort and Retry individual file upload with ResumableJS

I've successfully managed to upload multiple files in chunks to a server using ResumableJS. During the upload process the user is able to see the overall upload progress and the individual file upload percentage. It's also possible to pause/resume…
Ricky
  • 2,912
  • 8
  • 47
  • 74
3
votes
1 answer

Resume upload after browser crashed

i'm working on a file upload to upload large files up to 2GB. Therefore i need to make sure that the download resumes even after the browser crashed or something. resumable.js looked very promising to me, so i gave it try:
mrksbnch
  • 1,792
  • 2
  • 28
  • 46
2
votes
0 answers

how to implement resumable large file upload in javascript and laravel

I am trying to implement large file upload with resumable.js and laravel-chunk-upload. Everything is working fine, that is I am able to upload large files properly but the problem is, if anything happens to network connection while uploading, then…
2
votes
1 answer

Pausing and resuming option in azure blob upload using javascript

How to pause the on progress upload of browser files to azure storage account and resume when required using azure storage blob javascript(v12) library file? I have tried pausing the uploading process using resumable.js library…
Chethana
  • 23
  • 4
2
votes
1 answer

i'm using resumable js to upload video on JWPlayer in laravel wepapp

i'm using resumable js to upload video on JWPlayer in laravel wepapp. when i upload video. it uploads only first chunk of video on jwp dashboard then return below error in network tab. a:4:{s:6:"status";s:5:"error";s:7:"message";s:72:"Uploads for…
2
votes
1 answer

Uploaded files/chunks are disappearing

I'm trying to set up a large file upload system using resumable.js and django. The front end is all properly configured, and for the django side of things I am using django-resumable. I'm using a very basic view to handle the upload: from…
Magrias
  • 275
  • 1
  • 3
  • 14
2
votes
1 answer

How to specify a file type for resumable.js uploader?

I want resumable.js (file uploader) to only open a file picker for a particular file type, like mp4 or mp3. How to specify a file type for resumable.js uploader?
2
votes
1 answer

Using resumable.js from Dart

I am trying to use resumable.js from Dart with this code: var rs = new JS.JsObject(JS.context['Resumable'], [new JS.JsObject.jsify({ 'target':context.server+'/upload' })]); files.forEach((file) { rs.callMethod("addFile",[file]); }); files…
Ivo Skalický
  • 318
  • 1
  • 10
2
votes
1 answer

XMLHttpRequest cannot load https://s3.amazonaws.com/. Origin is not allowed by Access-Control-Allow-Origin

first time i am using AWS and s3 i have to integrate it with salesforce for uploading large files when i try to upload a file it is giving me error OPTIONS https://s3.amazonaws.com/ritesh 403 (Forbidden) resumable.js:344 XMLHttpRequest cannot load…
mathlearner
  • 7,509
  • 31
  • 126
  • 189
1
vote
1 answer

Laravel with Resumable.js failed uploading large file and slow server response

From the start: I'm using XAMPP as a server stack for testing project which is something like google drive. What I wanted to achieve is that User can upload any size and type of file. I'm using for it Resumable.js which divides file into the…
1
vote
1 answer

Getting "Content length 0 too small" when trying to upload to vimeo using tus

I am trying to upload a video file to vimeo using their resumable upload protocol, but end up getting Failed because: Error: tus: unexpected response while creating upload, originated from request (method: POST, url:…
1
vote
1 answer

Resumable.js - retrive success server response

How do I get the response data from the last chunk uploaded? I cant find it anywhere, the only thing that I found was that you can only access the message on error Thanks
getl0st
  • 342
  • 1
  • 10
1
vote
0 answers

Upload Multiple Folders Not Working In Chrome Using Resumable.js

There is an issue when dragging & dropping multiple folders using resumable.js, on chrome ONLY. It's only upload one of the folders selected. I've tested this case on Firefox/Edge and it's working correctly. Also I notice that if you upload a…
1
2 3