Export

You can export your data to make a backup, migrate it to another website within Hyvor Talk, or to migrate to another platform.

Data Formats

Hyvor Talk supports exporting your data in two formats:

If you need a backup, use the Hyvor Talk JSON format. If you are migrating to another platform that does not support our format, use the WordPress format. The WordPress format only contains pages, comments, users, and some settings.

Hyvor Talk JSON Format

Hyvor Talk exports all data of your website in the following JSON format. This includes all comments, pages, users, and settings. Our exporter is optimized to export large amounts of data in a single file.

{
    "website": Website,
    "comments": [
        Comment,
        Comment,
        ...
    ],
    "pages": [
        Page,
        Page,
        ...
    ],
    "users": [
        User,
        User,
        ...
    ],
    "rules": [
        Rule,
        Rule,
        ...
    ],
    "badges": [
        Badge,
        Badge,
        ...
    ]
}

The objects are from our Console API:

How to export

  1. Go to Settings → Export in the Console
  2. Choose your format and click Export
  3. You can track the progress of your export in the Export History section. You can download the file from there once it is ready.

Known Limitations