Questions tagged [large-file-upload]

97 questions
0
votes
1 answer

Large file(about 3GB) upload with urllib / sock.sendall(data) OSError

env: Mac OS X El Capitan / python 3.5.1 I want to upload file which is about 3GB size. def read_in_chunks(file_object, chunk_size=4096): while True: data = file_object.read(chunk_size) if not data: break …
Astin
  • 137
  • 1
  • 1
  • 9
0
votes
1 answer

How Can I Send Video of a large size to Server?

i have found this code HttpURLConnection to Send image , audio and video files with parameter may (String or Json String) Android and it works perfectly with video, images and audio. But when i send a large video i get this error : Throwing…
0
votes
2 answers

How to upload a large file (1 GB +) to Google Drive using GoogleDrive REST API

I am tying to upload large files(1 GB+) to Google Drive using GoogleDrive API. My code works fine with smaller files. But when it comes to larger files error occurs. Error occurs in the code part where the the file is converted into byte[]. byte[]…
Devi
  • 15
  • 1
  • 6
0
votes
0 answers

Php Ajax Large File Upload Fail

I currently have a php api using REST which has the following method: private function createVideoCast(){ if($this->get_request_method() != "POST"){ $error = array('status' => "Failed", "msg" => "Invalid Request…
0
votes
0 answers

flask-sqlalchemy write huge file to database

I am trying to load a huge file like 5900 lines of sql creates, inserts and alter tables into mysql database with flask-SQLalchemy. I am parsing the file and seperate each command by splitting between ; This works as expected. Here is what I am…
Marcel Hinderlich
  • 213
  • 1
  • 3
  • 19
0
votes
0 answers

I'm just wondering does PutMethod and void doPut are same?

There is no clear explanation on the Internet. Please help me. I am suppose to upload a file using put method using spring Mvc. So I am looking for put method example but because each one is writing differently.
user4150758
  • 384
  • 4
  • 17
0
votes
0 answers

DropNet Chunked Upload

The current version of DropNet (1.8.2.0) seems to be handling the REST portion of things fine, but when I call the final CommitChunkedUpload to complete the upload, I get a dropbox error indicating that the path parameter was in the wrong…
0
votes
2 answers

Handling file uploads in Drupal

I've been messing around a bit with various solutions to what I would see as a fairly common problem, but I've not yet been able to solve it in a satisfactory way. What I wish to achieve is some kind of functionality where a user can upload new…
Marco
  • 2,329
  • 1
  • 21
  • 25
0
votes
1 answer

Exception while uploading large file using backload file uploader

I am using backload file uploader to upload files, its working fine with files with around 200-300 mb but for larger files 700-1000 mb, its failing and not even throwing proper (its going into handler_StoreFileRequestException but passing parameter…
Dr. Rajesh Rolen
  • 14,029
  • 41
  • 106
  • 178
0
votes
1 answer

Fineuploader: large files to Amazon S3

For small files (smaller than about 5MB) Fineuploader sends a complete policy objet for signing, and upload succeeds including the posprocessing which is sending a temporary link to the client, and some server-side administrative stuff. I use the…
Notinlist
  • 16,144
  • 10
  • 57
  • 99
0
votes
1 answer

ASP.NET MVC2 and IIS 7.5 . Problems when read large data from Excel 2010

I have a problem when reading large amount of data from Excel 2010 I use the code below to read data: public static DataTable GetExcelData(string filePath, string extension) { try { string conStr =…
rocket
  • 9
  • 3
0
votes
1 answer

FileSystemWatcher not working properly when large number of files are added to the watched directory

We want to create a webfarm for running our web application.For this we have used filesystemwatcher to get change notice and sync the changes of one server to other servers on webfarm.The filesystemwatcher works watches and notifies when one or two…
0
votes
0 answers

Method for User uploading Large ZIP file to server

I am using OpenCart right now to allow customers to buy products from my website. Once they have successfully purchased an item, I would like them to be able to upload a large file (preferrably via FTP) to my server. I'm expecting somewhere between…
michaelmcgurk
  • 6,367
  • 23
  • 94
  • 190
0
votes
3 answers

gather file(s) from users

I'm looking for ways to gather files from clients. These clients have our software and we are currently using FTP for gathering files from them. The files are collected from the client's database, encrypted and uploaded via FTP to our FTP server.…
AndrewG
  • 1
  • 1
0
votes
3 answers

Upload/Download large files in a web app

I have a web app and I want to offer the possibility of upload and download big files (more than 2 gigas) Is it possible? Does exist some open Source project that can help me? Thank you very much
xfernandez
  • 167
  • 4
  • 8