Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Many organizations have very large files that need to be saved to Easyfile. The default setting in the Easyfile Scanpoint Connector site’s web.config file is roughly 100MB. Sometimes this needs to be increased.

...

Check the average document size to get a rough idea of what the new setting should be.

In the Easyfile site the Web Server\Scanpointconnector folder, look at the web.config file look for the <system.web> section. Under httpRuntime, change the maxRequestLength.

...

<system.web>
<customErrors mode="Off" />
<authentication mode="Forms">
<forms name="frmeasyfile" loginUrl="~/Account/Login" defaultUrl="~/" timeout="360" slidingExpiration="true" />
</authentication>
<membership defaultProvider="SpMembershipProvider">
<providers>
<clear />
<add name="SpMembershipProvider" type="EasyFileWeb.Models.Security.SpMembershipProvider" cacheTimeoutInMinutes="30" />
</providers>
</membership>
<compilation targetFramework="4.5" />
<httpRuntime targetFramework="4.5" maxRequestLength="102400" executionTimeout="1600" requestLengthDiskThreshold="2147483647" />
</system.web>

...