asp.net - Uploading digital products with size more than 5MB in nopCommerce results "Upload failed" error -


i have shop digital products built nopcommerce (a famous eccommerce software). uploading digital products size more 5mb results "upload failed" erro, solution?

first of all, check nopcommerce setting catalogsettings.fileuploadmaximumsizebytes.

second can try edit web.config folows

  <system.webserver>     <security>       <requestfiltering>         <requestlimits maxallowedcontentlength="52428800" /> <!--50mb-->       </requestfiltering>     </security>   </system.webserver> 

Comments

Popular posts from this blog

1111. appearing after print sequence - php -

java - WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/board/] in DispatcherServlet with name 'appServlet' -

Ruby on Rails, ActiveRecord, Postgres, UTF-8 and ASCII-8BIT encodings -