Skip to main content


 

Symptoms

 


Sometimes it may be necessary for you to increase maximum allowed attachment size for K2 SmartForms. There is a section in K2 Appit documentation which covers File Attachment Control settings and limit configuration thoroughly:

 

K2 Appit

 

http://help.k2.com/onlinehelp/k2appit/userguide/current/default.htm#sf-viewcontrols-fileattachmentwithprogress.html

 

But K2 Appit has slight differences with on-prem K2, and in this specific case, for example, you won't be able to find Allowed Type and Max Size properties exposed in design time control properties in on-prem version of K2 SmartForms. And there is no similar documentation section for K2 SmartForms on-prem.
 

 

Diagnoses

 


This limit can be increased on the K2 SmartForms Runtime site level by means of editing runtime web.config file. There are 2 relevant settings which have to be increased. These settings work in combination and one which set to smaller value takes precedence.

 

 

 

1) maxRequestLength This setting should present by default in your web.config. Just locate it and adjust its value in kilobytes. Example below shows how to set this limit to be 50MB (once again, value has to be specified in kilobytes):

 

 

 

<httpRuntime maxRequestLength="51200" /> <!--50MB-->

 

 

 

2) maxAllowedContentLength This setting does not exit in SmartForms Runtime web.config by default and it has to be added in appropriate place. Its value has to be specified in bytes. Example below shows how to set this limit to be 50MB:

 

 

 

<requestLimits maxAllowedContentLength="52428800" /> <!--50MB-->

 

 

 

Locate <requestFiltering allowDoubleEscaping="true" /> line in your config file and remove closing slash from this line, then add two more lines below so that in conjunction with this edited line it looks as follows:

 

 

 

<requestFiltering allowDoubleEscaping="true">

 

<requestLimits maxAllowedContentLength="52428800" /> <!--50MB-->

 

</requestFiltering>

 

 

 

You don't need to perform IIS reset to apply these changes just edit and save web.config file.
 

 

Resolution

Apply relevant settings by means of editing K2 SmartForms runtime web.config as described above.

 

 



 

Note: the error message when the file exceed the value maxAllowedContentLength is:



 



File Not Uploaded



"The file attachment exceeds the maximum size of 51200 KB.


Reply