Failed to upload files to Godaddy server

When I try to upload an image to Godaddy, I can only upload a smaller image size.

I have already used this in my web config, but still I cannot upload larger files

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

      

+3


source to share


1 answer


In your web config you need to add maxRequestLength

in System.web

along with the above config

Example:



 <httpRuntime  maxRequestLength="600000" />

      

+1


source







All Articles