Move catalogs data from one store to another

How to configure and adapt Aimeos based shops as developer
Forum rules
Always add your Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
traiyani75
Advanced
Posts: 114
Joined: 08 Nov 2019, 11:56

Move catalogs data from one store to another

Post by traiyani75 » 18 Dec 2020, 11:35

Hello,

We want to move all catalogs data from one store to another store. Can you please help us for the process?

Thanks

User avatar
aimeos
Administrator
Posts: 7893
Joined: 01 Jan 1970, 00:00

Re: Move catalogs data from one store to another

Post by aimeos » 20 Dec 2020, 13:16

You can use the catalog and product XML export/import. It's not documented well yet but it's pretty easy to use. You only have to configure the location where the files should be stored/read from:
- Product export location: https://aimeos.org/docs/2020.x/config/c ... /#location
- Product import location: https://aimeos.org/docs/2020.x/config/c ... location_1
- Catalog export location: https://aimeos.org/docs/2020.x/config/c ... /#location
- Catalog import location: https://aimeos.org/docs/2020.x/config/c ... location_1

Then, execute the jobs, e.g. for Laravel:

Code: Select all

php artisan aimeos:jobs "product/xml/export catalog/xml/export"
php artisan aimeos:jobs "product/xml/import catalog/xml/import"
You can also add the site at the end of the commands for export/import a specific site.
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

traiyani75
Advanced
Posts: 114
Joined: 08 Nov 2019, 11:56

Re: Move catalogs data from one store to another

Post by traiyani75 » 21 Dec 2020, 07:12

Hello,

Thanks for the suggestion. We were checked export product document.
But, It doesnt support export product with properties. Right now, it is exported with attribute, media, text, price and sub products.
https://aimeos.org/docs/2020.x/config/c ... /#partials

How do we export properties along with other partials?

Thanks

User avatar
aimeos
Administrator
Posts: 7893
Joined: 01 Jan 1970, 00:00

Re: Move catalogs data from one store to another

Post by aimeos » 22 Dec 2020, 11:12

The "product/property" should be added here:
https://github.com/aimeos/ai-controller ... d.php#L282

Can you create a pull request on Github with the change? We will integrate it and release a new version.
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

Post Reply