Reputation: 360
I am working on Umbraco 7 I am getting an issue on umbraco file upload. I have not used any regular expression for uploading. I am trying to upload a pdf with file size 10MB approximately, It's working fine when I tried it on LocalHost but when I try to upload it on Live server it gave an error (displayed in image 01)
I have tried to track this error in Firebug but didn't get any useful information.
Can someone help me out in this problem?
Upvotes: 2
Views: 2089
Reputation: 360
Yeah I got it problem was with web.config file I have added this code in tag inside HttpRuntime and they are working fine now.
maxRequestLength="204800" executionTimeout="99999"
Upvotes: 4