Rank: Advanced Member
Groups: Developers
Joined: 11/7/2018(UTC) Posts: 303
Thanks: 21 times Was thanked: 5 time(s) in 5 post(s)
|
How do I increase the maximum allowed file size for product import? Client is used to doing ones ~140MB in AC Gold and in AC9 20MB is the limit. So far, nothing I've found on the internet has worked. By the way, there should be some kind of warning when a file is too big besides the wording "A file is required". I wasn't sure of the problem until I looked in the browser console for errors. Thanks
|
|
|
|
Rank: Administration
Groups: Admin, Administrators, HelpDesk, System, Authorized User, Developers, Registered Joined: 10/5/2018(UTC) Posts: 175
Thanks: 8 times Was thanked: 17 time(s) in 15 post(s)
|
Please try updating your web.config. It could be something like Code:
<system.web>
<!-- maxRequestLength for asp.net, 2GB in KB -->
<httpRuntime maxRequestLength="2097152"></httpRuntime>
</system.web>
<system.webServer>
<security>
<requestFiltering>
<!-- maxAllowedContentLength, for IIS, 2GB in bytes -->
<requestLimits maxAllowedContentLength="2147483648"></requestLimits>
</requestFiltering>
</security>
</system.webServer>
|
|
|
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.
Important Information:
The AbleCommerce Forums uses cookies. By continuing to browse this site, you are agreeing to our use of cookies.
More Details
Close