Reputation: 267
I've read the hybris wiki but I wasn't able to find any related information...I have made a website in one hybris platform on localhost, and now I need to get all the content, products, pages, etc and import it in another platform. Do you have any idea how to do this?
Thanks!
Upvotes: 2
Views: 6071
Reputation: 5401
Another good option for you here will be to use the Hybris-to-Hybris Synchronization which will allow you to transfer all your data by taking advantage of Data Hub. This is a very good solution in cases where you want to keep a good performance in the origin system, or where you are dealing with different version of hybris. See more information on this here.
Upvotes: 0
Reputation: 2989
There are two scenarios :
1 - You have made all the website configuration by impex files and therefore you will just need to initialise your system on the new platform
2 - You have done all the website configuration manually
Upvotes: 0
Reputation: 5420
You can export your data by writing Export Script.
Creating Headers for Export
Here are the list of some examples ->
For More Information on How to run Export in different ways, Follow this link Impex - User Guide
Upvotes: 4
Reputation: 3059
If you're not worried about overwriting existing data on the other platform, you could simply copy the database over. More than likely you will also need to copy the hybris/data
folder, or you'll have missing media references. If you're using MySQL you can use the mysqldump
utility. This is the quick easy way if you just need to stand up a UAT environment, for example.
The better way would be by creating impex scripts that will export all the items needed. On the hybris wiki, search for "Data Exporter", which is a page containing a link to an HMC extension called advancedexport
. It will allow you to set up your export more easily.
Upvotes: 2