I am using igUpload from Infragistics to upload multiple files. Everything works fine when the file size is less than 3 MB but when i try to upload a file with bigger size, it fails and returns this error
Could not get your current file status! Probably connection dropped
I also changed the uploadUtilsBufferSize to 10485760 but still nothing works for bigger files. Following is the configuration for igUplaod
Button.igUpload({
mode: 'multiple',
multipleFiles: true,
AutoStartUpload: false,
progressUrl: "IGUploadStatusHandler.ashx",
controlId: "upload1",
labelUploadButton: "Upload",
onError: function(evt, ui) {
if (ui.errorType == "serverside") {
ErrorMessage.append("<p>" + ui.serverMessage + "</p>");
} else if (ui.errorType == "clientside") {
ErrorMessage.append("<p>" + ui.errorMessage + "</p>");
}
}
});
There is a maximum request length limit on the IIS web server. For IIS 6 it is 4 MB (details here). For IIS 7 and newer is 28.6 MB (details here).
Depending of what version of IIS you're using try the following settings in the web.config:
IIS 6 (web.config):
IIS 7 (and later) (web.config):
P.S.: This information is documented in the Ignite UI help here.