in asp.net I cant set my upload limit with the value:"maxAllowedContentLength". This value has the type uint32, that means it has a maximum size of: "4294967295". The problem is, that 4gb for me, are not enough. Is there a way, to increase this value?
Asked
Active
Viewed 84 times
0
-
What value do you want it to be? – Izzy Mar 23 '15 at 10:39
-
I've to upload files with a size of 10gb. – Marcel Hoffmann Mar 23 '15 at 10:42
-
I'd imagine for that size you would need to have a js/flash based split async file uploader so you can split the files into more manageable chunks. Is there no option to use a different option as 10gb will also probably cause timeouts – finman Mar 23 '15 at 10:45
1 Answers
1
It seems that increasing the size more than the range of int32 gives error in configuration settings.
However, if you must upload files with size larger than maximum than you might consider the possibility of splitting the files into smaller chunks and then transfer and store them on server and then creating a process to combine them when a user asks to download the file.

Rishabh Malhotra
- 269
- 3
- 13
-
Okay , the only way I can go, is to splitt the file into smaller chuncks. Thanks! – Marcel Hoffmann Mar 23 '15 at 10:51