Vues :

Question:

Why is it not possible to upload documents that are larger than 20MB?


Solution:

On the Web Server hosting the DocuWare Platform Services you have to open the file "web.config" (default path: C:\Program Files (x86)\DocuWare\Web\Platform\web.config).
Search within this file for "security"
(~line 321) and add the text marked in red:

<security>
    <requestFiltering>
        <requestLimits maxAllowedContentLength="209715200" />
    </requestFiltering>

    <authentication>
        <windowsAuthentication enabled="false" />
    </authentication>
</security>

This value equals 200MB and raises the maximum upload size to that value.