Questions tagged [large-file-upload]
97 questions
0
votes
1 answer
.net core large file upload method
How to upload large files with asp.net core web api? When exceeding 500mb, the following exception message appears. I also set the "COMPlus_gcAllowVeryLargeObjects" environment variable and startup.
services.Configure(options =>
{
…

김세림
- 291
- 1
- 5
- 17
0
votes
0 answers
Internet explorer throws TypeMismatchError at POST upload request with large body
I have few files (~30Mb every) that needs convert to base64 and upload for server. After uploading part of files IE11 throws TypeMismatchError. File content is a base64 string that it is not encoding problem. Panel of network requests do not…

Sundved
- 91
- 10
0
votes
0 answers
PHP empty $_POST and $_FILES with large file upload
Please do not close this as a duplicate. I know there are many similar questions posted here, but I have tried all of those answers with no change in the problem. I've looked into this for more than a week. All the answers I have found talk about…

Bennett Barouch
- 125
- 1
- 3
- 10
0
votes
1 answer
How to Migrate data of size 5 to 10 TB to azure from on-premises
Which Azure service is preferred while transferring data of range 5TB to 10TB ?
I have checked Import/export , Data lake, Storage explorer

twinkle hema
- 75
- 1
- 11
0
votes
1 answer
IIS Buffering Requests Content Before Controller Action
I am trying to setup an "external" web api that will be able to receive in large http posts (+1GB) and forward the stream to another "internal" web api that writes the request contents to a file. I have model my implementation based on examples of…

Jade L.
- 91
- 1
- 8
0
votes
0 answers
how to store large medical images in a database online?
Is it possible to store large images 1go to 2go medical images by uploading them to a mongobd database online?
the database is consulted by a doctor, who has the right to see the info about his patients.
what needs to be done to make the operation…

MTS
- 33
- 3
- 11
0
votes
0 answers
Xamarin C# HttpClient upload Large Files
i'm trying to upload 10 Files ,100 Mb each one from a xamarin App.
the WebApi is a netcore Api,and the files are uploaded without any problems if i upload them one by one.
but when i try to upload the 10 files together as a Multipart Content using…

Wael
- 13
- 1
- 7
0
votes
1 answer
Core.LargeFileUpload File Not Found Cant find Folder
I am trying to upload files larger than 2MB to SharePoint365 using Core.LargeFileUpload.
I have altered it to suit my code but it fails to find my Folder. I get an error response 'File Not Found' and a 0 byte file is written to the list
I have…

Travis Citrine
- 1
- 2
0
votes
1 answer
Azure Blob To FTP Large Files 20 GG
I want to transfer large files around 20-200 GG from Blob to FTP.
I am using below code to perform the same but getting memory out of exception after the 500 MB is reached.
public void TriggerEfaTrasfer()
{
string…
0
votes
0 answers
wildfly is not uploading large file
Here is my Standalone.xml connector configurations

user3311231
- 33
- 1
- 8
0
votes
1 answer
Django InMemoryUploadedFile and asynchronous tasks
I have a django application on which I upload several files of huge size.
Once in my view, I want to do an asynchronous task on those files:
def my_view(request):
Thread(target=_my_task, args=[request.FILES]).start())
return…

Charles-Edouard Lecat
- 85
- 1
- 8
0
votes
0 answers
R - Read large file with small memory
My data is organize in an csv file with millions of lines and several columns. This file is to large to read into memory all at once.
Fortunately, I only want to compute some statistics on it, like the mean of each column at every 100 rows and such.…

Diogo Santos
- 804
- 2
- 13
- 26
0
votes
2 answers
Upload of large file to Autodesk Forge and 502 error
I struggle with large file upload to Autodesk Forge.
This is what im doing:
I properly authorise access using 2legged auth, create bucket, and i'm able to upload revit file and in return i receive URN (object ID). This is all spot on.
The upload…

alexz
- 1
- 1
0
votes
1 answer
upload large file size(larger than 1048MB) from php using xampp and mysql
I have a web application using in a local network. I made it by(php, html, mysql) and using xampp to share it in a local network, my problem is that I can't upload larger than 1GB file to database because I want to upload larger than 3GB files. I…

M.edrees abid
- 11
- 3
0
votes
1 answer
Desktop file uploader for a website
I'm writing an upload functionality for a website (Javascript, ASP.NET). The requirement is that the user would upload a large folder of multiple files (~20k files having ~3GB in total). We would like to save the user from most of the trouble with…

Lukasz Lysik
- 10,462
- 3
- 51
- 72