cancel
Showing results for 
Search instead for 
Did you mean: 

Alfresco 5.0 upload throwing 404 or 502, no logged errors.

yikki
Champ on-the-rise
Champ on-the-rise
Currently I have Alfresco running on Windows Server 2012 R2 with IIS 8.5 as the webserver and users are getting either a 404 error or 502 error when they try to upload documents that are > 5mb in size. Users are able to upload documents smaller than 5mb with no problems. Any ideas on how to go about this?

Thanks
1 REPLY 1

yikki
Champ on-the-rise
Champ on-the-rise
Well I found a solution by changing web.config in asp.net

I added:

httpRuntime
executionTimeout="90"
maxRequestLength="10485760"
useFullyQualifiedRedirectUrl="false"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="100"
enableVersionHeader="true"


I'm not sure this is best practice, but thus is life trying to use Microsoft products with software developed for Apache.