Maximum size for upload file in Product attribute

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
4 years ago
Hi Community,
Can anyone say what is maximum filesize allowed to upload from Product attribute on product detail page?

In admin area configuration - Maximum file size (KB) is set empty for allow maximum size but I'm not able to upload file with more than 30 MB.

NopCommerce: 4.10
4 years ago
Done by extend file limit in web.config file



<system.webServer>
  
   <security>
        <requestFiltering>
          <!-- This will handle requests up to 9.9 GB -->
          <requestLimits maxAllowedContentLength="999999999" />
        </requestFiltering>
   </security>

</system.webServer>

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.