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β
- All fs_* tables above.
- FluentSupport settings in wp_options (plugin options; typically names containing fluent/fluent_support).
- Related WP users/usermeta used by agents/customers (fs_persons.user_id, ticket agent_id, etc.).
- Uploads/files referenced in fs_attachments.file_path / full_url (usually under wp-content/uploads).
- 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.
