Change the size limit for uploaded files

  1. Navigate to the site, which is located by default at C:\Program Files\Kofax\TotalAgility\Agility.server.web.
  2. Use a text editor to open Web.config.
  3. 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"/>
    Note Add these attributes only once. If the attributes already appear in Web.config, skip this step.
  4. 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.
  5. Save and close the file.