How to export data from CMS umbraco?

I have a project that uses umbraco cms, i.e. MSSQL (now we are rebuilding the site in WordPress). Which I can’t understand the relationship. It is difficult in Umbraco. Therefore, I would like to download / export content directly from Umbraco CMS. But in cms I do not see the ability to export bulk data. Is there any other way to do this? Or if you can help me find free tools. Or any free tools that MSSQL for MySQL can do simply?

Thanks in advance / Rajeev

+6
source share
2 answers

You probably want to explore the use of the Umbraco Courier add-on:

http://umbraco.com/products/more-add-ons/courier-2.aspx

This is not free, but it seems that this is the only tool on the market for this type of work.

-2
source

You can do this by creating a package. In the Umbraco developer section, expand node Packages and right-click on "Created Packages" and click "Create." Click on the package, and on the "Package Content" tab of the editor, you can select the content node with the ability to include all its child nodes.

Umbraco content packaging

Fill in the required fields on the "Package Properties" tab. When you click Save and Publish, you will be given the opportunity to download the package.

Download Umbraco package

Now you can download your content in this package and install it on another Umbraco instance using the option “Install local package”.

More detailed instructions for this approach are available here .

+8
source

Source: https://habr.com/ru/post/915859/


All Articles