GM
Asked
Hello I want to import 1500 items says " You are trying to import too many products."
- MSAnsweredHello,
Please import them in batch of max 999 products.
Thank you - DEAnsweredOpen : app\controllers\admin\Products.php
Edit Line #22: "$this->allowed_file_size = '1024';" to "$this->allowed_file_size = '3145';" // Changes to 3MB
Edit Line #1636: "if ($arr_length > 999) {" to "if ($arr_length > 1999) {" // Changes array size
Remove the quotes from above edits of course...
Be careful of this change, your system may be able to handle it, it may time out... I set mine to "9999" and it works just fine. - MSAnswered**[Dean Elzey](/u/deane10)** Hello,
The limits are to avoid future issue. Import products won't have much issue but add sale/purchase by csv will cause trouble, once someone need to edit it. Import will be fine but on edit browser won't be able to handle data.
Thanks for sharing though :) - Login to Reply