Tag for questions regarding resuming an interrupted upload.
Questions tagged [resume-upload]
33 questions
1
vote
0 answers
Pause/Resume functionality uploading to S3 bucket with HTML5 and php
I need help implementing a Pause/Resume functionality to my file uploader. Currently the uploader works as intended, outside of poor internet conditions. We have had instances where an user's file would be uploaded to our upload bucket corrupted and…

GelPen
- 141
- 1
- 9
1
vote
0 answers
Upload in Google API and Dropbox SDK
I already have an upload function in Google API and Dropbox API, but the problem is it can only upload small files like images but it cant upload big files like videos. Please help what do I need to add in the code.
This is my code in Google
This…
1
vote
1 answer
Building embedded system with no reliable internet connection
I'm not really sure how to search this over the internet, I tried some searches but never got the help I needed, so I'll just ask here. (sry if it's already answered!)
I'm building a embedded system that runs on windows. I'll gather some data and…

DieChopper
- 61
- 1
- 4
1
vote
1 answer
YouTube Data API - Resumable Uploads - Start a resumable session - Errors
Running into parseError attempting to follow the "start a resumable session" YouTube Data API - Resumable Uploads documentation.
complete list of efforts ,response and code
I read on the Google APIs - "Global domain errors" page "parseError The API…

Lee Cook
- 153
- 2
- 5
1
vote
0 answers
How to make a resumable upload with Google Drive iOS SDK
I am able to upload a file with google drive iOS sdk now.
Basically using "GTLService executeQuery".
I get this from the Google Drive iOS sample
But it is not a resumable upload. If the network fail when I upload a big file, the upload will start…

Matt
- 143
- 1
- 1
- 10
1
vote
1 answer
Resume upload using java youtube API
I am trying to upload a video to YouTube using the Java API like this:
private Video uploadVideo(final YouTube youtube, final Video video, final InputStreamContent mediaContent)
throws IOException {
YouTube.Videos.Insert…

yankee
- 38,872
- 15
- 103
- 162
1
vote
1 answer
Resumable uploads in Objective-C
A part of my iOS app is to perform uploads of large files to a server. Internet connection of my users is not always ideal.
Is there any way I can perform resumable uploads?
P.S. Request type is HTTP, but if it doesn't support it, it's possible to…

Sergey
- 47,222
- 25
- 87
- 129
0
votes
1 answer
Uppy IO Resume-able File Upload allowedFileTypes
I'm using Uppy.io v0.23.1 for resumeable file uploads.
As per documentation, we can limit file types through allowedFileTypes property.
Here is my code in effort to limit file uploader control to only allow MS PowerPoint files:
var uppy = new…

Azaz ul Haq
- 1,635
- 2
- 18
- 46
0
votes
0 answers
Uploading large file to Google Drive
Can anyone help me how to upload large file (more than 1 GB) to Google drive with google drive v2 api using resumable upload with my c# application
using (var stream = new System.IO.FileStream(fileName, System.IO.FileMode.Open,…

Vijina Govindan
- 43
- 7
0
votes
1 answer
Tus.io WebException (Server Error 460) During Normal Upload
I'm using Tus.io (Resume-able File Upload Library) .Net Client library to upload files to a web server.
Here is the code snippet:
Dim testfile = My.Computer.FileSystem.GetFileInfo("..\..\test.pptx")
Dim tc As New TusClient.TusClient()
…

Azaz ul Haq
- 1,635
- 2
- 18
- 46
0
votes
0 answers
Snippet of using of library for resuming an interrupted upload of file through HTTP for IE and Edge?
Could you please provide snippet of using client side WEB library (at your discretion, for Internet Explorer and Edge browsers) that is designed to introduce fault-tolerance into the upload of large files through HTTP. That is capable to resume file…

Vlad
- 1,977
- 19
- 44
0
votes
1 answer
Upload large files to WebDAV with resume support
I want to upload large files to ownCloud with WebDAV API.
I use this code to do this:

IR PRO
- 75
- 1
- 6
0
votes
1 answer
Resumable multipart file uploads using AFNetworking in Objective - C
I want to develop an app in which I may need to support resumable file upload. Is there any way to support resumable file upload.Please note that I may queue up file uploads also.
I'm using AFNetworking. Server: IIS.
If possible, please provide a…

Milan Manwar
- 374
- 3
- 10
0
votes
1 answer
Resumable file uploads for Cordova/Phonegap, android platform
can any one help out with snippets or an existing plugin for resumable, fault tolerant uploads for phonegap / cordova (Android). I've been trying to look in Cordova file and file transfer plugin native code but my Java sucks. I will really…

Michael Rhema
- 171
- 4
0
votes
1 answer
Yii resumable implementing
I have a task to implement resumable in Yii, and I implemented upload control, but never Resumable before.
public function actionUpload()
{
$model=new User;
if(isset($_POST['User'])) {
…

user3694184
- 28
- 4