Skip to main content

How to import tickets from one FluentSupport to another?

Hey friends! Is it possible to export FluentSupport settings and tickets? I want to move everything to a subdomain (with different WP install).

I see how to import from other ticketing systems, but not from another FluentSupport install.

Hi, I asked my self the same question and this is the reply from my agentic dev env Warp:
Yesβ€”this is possible, but usually not as a one-click FluentSupport-to-FluentSupport import/export.
Practical migration is a database + uploads migration.

From the schema page you had open, FluentSupport core data is in these custom tables (with your WP prefix in front, e.g. wp_fs_tickets):

β€’ fs_tickets
β€’ fs_conversations
β€’ fs_attachments
β€’ fs_persons
β€’ fs_mail_boxes
β€’ fs_products
β€’ fs_taggables
β€’ fs_tag_pivot
β€’ fs_meta
β€’ fs_activities
β€’ fs_data_metrix (stats/history; optional if you don’t care about historical metrics)

What to migrate to move β€œeverything”

  1. All fs_* tables above.
  2. FluentSupport settings in wp_options (plugin options; typically names containing fluent/fluent_support).
  3. Related WP users/usermeta used by agents/customers (fs_persons.user_id, ticket agent_id, etc.).
  4. Uploads/files referenced in fs_attachments.file_path / full_url (usually under wp-content/uploads).
  5. Run domain replacement old β†’ new (use wp search-replace, not raw SQL replace, due serialized data).

Important notes
β€’ WP Tools β†’ Export/Import will not reliably move FluentSupport ticket data (custom tables).
β€’ Keep source and destination on the same FluentSupport version during migration.
β€’ Pause email piping/automation during migration to avoid split/new tickets during cutover.
β€’ If table prefixes differ between installs, account for that during import/rename.