Attachment sizes for the web client
- C:\Inetpub\wwwroot\FsOptivaWeb\Web.config
You can attach files to objects such as formulas and items. See the File attachments.
The maximum size (KB) of the file attachment is controlled by the
maxRequestLength
attribute in the
Web.config file.
To accommodate large file attachments, specify a high value for the
maxRequestLength
. An example is shown here.
<httpRuntime executionTimeout="2600000" maxRequestLength="12096"
useFullyQualifiedRedirectUrl="false" minFreeThreads="8"
minLocalRequestFreeThreads="4" appRequestQueueLimit="100"/>
If you have IIS 7.0 or higher installed, then the request size is
filtered first. That is controlled by the
maxAllowedContentLength
in the
Web.config file.
<configuration>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="51200000" />
</requestFiltering>
</security>
</system.webServer>
</configuration>