Guy Cothal
Guy Cothal

Reputation: 1348

IIS 8.5 Max File Upload Size

I already have my max file size maxed out in IIS 8.5, but is there a solution that would let me upload even larger files??

Thanks ahead of time

Upvotes: 0

Views: 1032

Answers (1)

Brando Zhang
Brando Zhang

Reputation: 27962

As far as I know, if you want to upload the very large file to the server, I suggest you could firstly divided the large file to chunks and then generate multiple request to upload the chunks to the server.

If all the chunks are uploaded completely, then you could combine the chunks to the final file.

For exmaple, you could use jquery file upload plugin, it support upload file with chunks.

Details, you could refer to this answer: https://stackoverflow.com/a/33243837/7609093

Upvotes: 1

Related Questions