Export

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

Visit Console → Tools → Export to export your data.

Data Formats

  • If you need a full backup, use the Hyvor Talk JSON format.
  • If you are migrating to another commenting platform that does not support our format, use the WordPress format. The WordPress format only contains pages, comments, users, and some settings.
  • Newsletter subscribers are exported in a CSV file.

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:

Newsletter Subscribers - CSV

Newsletter subscribers are exported in a CSV file. The file contains the following columns:

  • Email: The email address of the subscriber
  • Status: The status of the subscriber. One of:
    • pending
    • subscribed
    • unsubscribed
  • Subscribed At: The date and time the subscriber subscribed.
  • Source: The source of the subscriber. One of:
    • console
    • form
    • import
    • auto_subscribe

Here is an example of the CSV file:

Email,Status,Subscribed At,Source
[email protected], subscribed, 2024-01-01 12:00:00, console
[email protected], subscribed, 2024-01-01 12:00:00, form

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

  • Reactions, ratings, and votes are aggregated in Comment and Page objects, but individual records are currently not exported. We may add this in the future.