-
I have created a new instance of orchard core (using docker), and exported my old site, but there doesn't seem to be any way to import the legacy xml files. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Orchard Core is a rewrite of Orchard CMS, OC is using to import and export You may need to write a custom tool or a module for doing that |
Beta Was this translation helpful? Give feedback.
-
There is nothing ootb. As There is no one to one mapping for content type or part, for example Layout part doesn’t exists in OC However once you know mappings of your definition, you can write converter that converts xml to json recipe |
Beta Was this translation helpful? Give feedback.
-
My main concern is just content, layouts will need to be redone anyway.
It does seem like blogs and their content is pretty 1:1 so a best effort import should be able to get a lot of stuff across, I'd consider writing something but by the time I get proficient enough at OC the import will be a distant memory :P |
Beta Was this translation helpful? Give feedback.
My main concern is just content, layouts will need to be redone anyway.
What I ended up doing:
It does seem like blogs and their content is pretty 1:1 so a best effort import should be able to get a lot of stuff across, I'd consider writing something but by the time I …