Questions tagged [large-file-upload]

97 questions
1
vote
1 answer

Setting up git-LFS remotely

My co-worker just left his position, before he left, he created a repo with a lot of binary data(10GB of Unix Executable File) to our team GitLab without using git-LFS. When I try to clone the repo, it takes forever to clone. I researched a bit on…
Conrad
  • 11
  • 1
1
vote
0 answers

sftp large file(>1GB)failed with only specific data bytes transferred.Why?

Currently our system (Client) on AWS EC2 instance encountered a sftp problem when trying to send a large file to a customer remote sftp server (“160.xxx.xxx.35.bc.googleusercontent.com). For the small sized files, the sftp transfer works fine but…
1
vote
0 answers

How to upload large files from HTML5 form using Tornado > 4.1

I'm creating an application using tornado 6.0.3 and need to upload large files using an html form. How do I stream the files, eg using the @stream_request_body decorator, to do this? I have created a simple form which looks like this:
gnaisq
  • 11
  • 2
1
vote
0 answers

HTTP Error 413.1 - Request Entity Too Large The page was not displayed because the request entity is too large

When I tried to upload more than 50 MB of filesize the below error is getting displayed as there is a requirement of allowed Max file size is 50 MB and to show the user-friendly message in the application if the attached file size is more than 50…
Nanda kumar
  • 111
  • 4
  • 13
1
vote
0 answers

Zip file upload more than 1 GB not working with nodejs?

I want to provide facility to upload zip file with size more than 1 GB in my web application. I am using nodejs version 8.11.3 using Multer node module at server side. When testing this functionality locally, it works fine however when i host my…
1
vote
1 answer

Upload a json containing base 64 encoded file(size 400Mb) to spring REST interface using curl command

I am trying to upload a json containing large base64 encoded file(size: 400Mb) to a Spring REST interface using curl. But I receive a OutOfMemory error. I understand that the json containing the file is exceeding the JVM's heap size. What approach…
Ritesh Ray
  • 25
  • 4
1
vote
1 answer

Large file upload for office 365(StartUpload,ContinueUpload,FinishUpload) not working as expected - SharePoint

When I am trying to upload large file using 3 new methods (StartUpload, ContinueUpload, FinishUpload) by uploading chunks of file then final uploaded file is corrupt file and size is also greater than actual file. I have used Rest API to upload…
1
vote
1 answer

Upload large files through node.js express server, hosted in GAE

I need to upload large(more than 300 MB) file through my node server which is hosted in Google App Engine. I'm able to upload files using xhr.upload and its working fine in local, but in GAE I'm getting 413 - request entity is too large, it seems…
1
vote
1 answer

Allow more than 2 gb file upload in struts2

I am using Struts 2.1 in my project. In struts.xml maxsize element in my project is as follows : For the file upload process, is it possible to supersede the normal 2 Gb file limit…
1
vote
1 answer

WCF Streaming not working at server

I have used WCF service to transfer large files in chunks to the server for that i have reference this article http://kjellsj.blogspot.com/2007/02/wcf-streaming-upload-files-over-http.html I have configured my application on IIS on my machine. Its…
Radhi
  • 6,289
  • 15
  • 47
  • 68
1
vote
2 answers

storing each and every chunk of data php

Hello i am trying to upload a data to my server, but my requirement is if the uploaded content is a large file and if the connection is disconnected we need to upload the same file from where it stopped and not to start again. I can upload my file…
Rebecca
  • 403
  • 2
  • 7
  • 29
1
vote
2 answers

How to upload large files in ASP.Net MVC 4

How to upload large files in ASP.Net MVC 4 I have code like this in the controller: Request.Files.Get("img").SaveAs(Server.MapPath("~/Images/ImgSong/" + +Out.Id + ".jpg")); It only allows uploading a small file, while the file I want to upload…
anosoul
  • 13
  • 5
1
vote
4 answers

How To Import Large Excel File To MySql Database Using PHP

I have to upload excel file's data to MySQL database using php. I have found the code for that but I am unable to upload large files. Can anyone please tell me that how can I increase the max file size limit for the code mentioned in below…
Darshan
  • 39
  • 1
  • 2
  • 12
1
vote
1 answer

sharepoint 2013 large file upload ( >1GB)

Does Anyone knows what is the max file size that can be uploaded through sharepoint? I am facing an issue while uploading large file exceeding 1GB, i get an error: Here are some solutions i tried: Increase the time-out in IIS (by default It is 120…
1
vote
2 answers

Uploading large files from web browser and transferring to Amazon S3

We currently have a small web app, part of which is file uploads. Currently we are using Plupload on the client with chunking enabled to allow large files be uploaded. The files are saved on the app server and the chunks are appended as they come…
dnc253
  • 39,967
  • 41
  • 141
  • 157