Page 2 of 2

Re: Uploading Thousand of products

Posted: 28 May 2022, 12:01
by Jan
Hi, the best way is to export products from some previously created Phoca Cart instance and debug the exported CSV, so you know the format of the file.

For example, if product is stored in more categories:
Image
such information is stored in JSON format in CSV.

In general, in ecommerce software, we move in very complex data storage structures. The requirements for e-commerce are completely different than for some simple components. We can't just store the category number. If there are requirements for the possibility of having products in more than one category, in addition to the multidimensional field with category numbers, we also store their order, etc. And so it is for most data in e-commerce. Plus, of course, the complexity of their relational connections. Therefore, it is always easiest to use SQL directly for such complex structures. :idea:

Jan

Re: Uploading Thousand of products

Posted: 31 May 2022, 16:56
by saltri77
Solved, now it works with my file, thank you for everything

Re: Uploading Thousand of products

Posted: 07 Jun 2022, 16:59
by Jan
Ok, great to hear it.

Jan