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 below it:
    Note Add these attributes only once. If the attributes already appear in Web.config, skip this step.
    1. Locate the <system.web> tag.
    2. Paste the following code below the <system.web> tag:
      <httpRuntime executionTimeout="90"
      maxRequestLength="2147483647"
      useFullyQualifiedRedirectUrl="false"
      minFreeThreads="8"
      minLocalRequestFreeThreads="4"
      appRequestQueueLimit="100"/>
  4. In the maxRequestLength attribute, enter the maximum file size limit in KB.
  5. Save and close the file.