Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to upload files into Godaddy server

When i try to upload the Image to the Godaddy , i'm only able to upload lesser size of images .

I have already used this in my web-config , but still i am unable to upload the larger files

 <security>
      <requestFiltering>
         <requestLimits maxAllowedContentLength="1073741824" />
      </requestFiltering>
   </security>
like image 951
Runner Avatar asked Dec 03 '25 04:12

Runner


1 Answers

In you web config you need to add maxRequestLength in System.web along with the above config

Ex:

 <httpRuntime  maxRequestLength="600000" />
like image 158
Tummala Krishna Kishore Avatar answered Dec 05 '25 21:12

Tummala Krishna Kishore