Unable to upload big files
It can happen that MXSuite fails when uploading a file larger than 30 MB.
When you expect that MXSuite will upload the file, the upload will never happen.
<requestLimits maxAllowedContentLength="262144000" />
This line must be added between
<security>
<requestFiltering>
[Other commands]
</requestFiltering>
</Security>
Example below:
<add fileExtension=".refresh" allowed="false" />
<add fileExtension=".compiled" allowed="false" />
<add fileExtension=".msgx" allowed="false" />
<add fileExtension=".vsdisco" allowed="false" />
<add fileExtension=".rules" allowed="false" />
</fileExtensions>
<verbs allowUnlisted="true" applyToWebDAV="true" />
<hiddenSegments applyToWebDAV="true">
<add segment="web.config" />
<add segment="bin" />
<add segment="App_code" />
<add segment="App_GlobalResources" />
<add segment="App_LocalResources" />
<add segment="App_WebReferences" />
<add segment="App_Data" />
<add segment="App_Browsers" />
</hiddenSegments>
</requestFiltering>
<requestLimits maxAllowedContentLength="262144000" />
</security>
After the file is saved, a restart of the IIS Server is required.
Administrative rights of this folder must be present for the current user
No comments to display
No comments to display