1

Hello, I wonder if there is any way to migrate the records of a Webform (data submissions) of a site in Drupal 7 to a previous copy of the same site.

My form includes text fields, images and files, and am aware that the records of the form are not nodes.

For this reason, modules as 'Node Export' do not work (although I tried anyway).

Could anyone guide me to find the solution?

Or give me a place to start?

John Y
  • 14,123
  • 2
  • 48
  • 72
Antonycx
  • 209
  • 3
  • 14

2 Answers2

1

Have you given Migrate Webform a try yet?

From the project page

It will migrate all nodes of the webform node type (with the default D6 fields using migrate_d2d backend), all the configuration* of the webform's settings, the form components, email destinations, submissions and associated submission data, in addition to any validation configuration you have (from webform_validation module). It grabs the "last downloaded" data too, in case your users were downloading sequential batches since the last time they were on the site.

D34dman
  • 1,241
  • 9
  • 12
0

Try Webform Import.

Allows delimited data files to be imported as submission (results) into webforms.

This is useful for importing submissions from other systems in to Webform. Can also be used to Edit submissions via Export / Import as long as the CSV has the SID column filled.

Baach
  • 889
  • 10
  • 10
  • He will export/import the images and documents ... But if you get some problems That because of the FID ( file id ) in the database so make sure to check the fid before you export you will find it in Table 'File_managed' and 'File_usage' if its the same no need to worry. and you can copy/past the files if you want. – Baach Jan 25 '18 at 13:41