File upload issue

Hi support,

 We encounter some file upload issues. When users upload files (around 10MB), the server returns 500 error code.

 Do you have any hints on the IIS setting so that users can upload larger files?

 Thank you very much.

 Best Regards,

Staff Response:

There is a default restriction in IIS to stop uploads of more than 2Mb. Depending on your version of IIS you will have to modify the web.config file - change the one in WorkflowFirstPro folder so it gets copied into new apps as you publish them.

There are a couple of places to change. In system.web tag, add: 

        <httpRuntime maxRequestLength="1536000"  />

Then in system.webServer tag, add this tag:

        <security>
 
            <requestFiltering>

                <requestLimits maxAllowedContentLength="2000000000" />

            </requestFiltering>
 
        </security>

 User Response:

Hi John,

Thank you! It solved the issue.

Best Regards.


Next Topic:
v4.2.0.956 (beta)
Up Since 2/29/2024 12:02:23 AM