Change the size limit for uploaded files
- Navigate to the site, which is located by default at C:\Program Files\Kofax\TotalAgility\Agility.server.web.
- Use a text editor to open Web.config.
-
Locate the
<system.web> tag and paste the following code below it:
<httpRuntime executionTimeout="90" maxRequestLength="2097151" useFullyQualifiedRedirectUrl="false" minFreeThreads="8" minLocalRequestFreeThreads="4" appRequestQueueLimit="100"/>
Add these attributes only once. If the attributes are already available in Web.config, skip this step. - In the maxRequestLength attribute, enter the maximum file size limit in KB. If this attribute is not specified, the default size limit of 4MB is used.
- Save and close the file.