Hi, I tried exporting my data from Drupal 7 without being programmer, and without using Migrate. For me that is still complicated..

This is how I exported my data out of Drupal 7. The question is, how to get it into Drupal 10?

1)       Nodes through Export views; https://www.drupal.org/project/vbo_export necessary modules: Views Bulk Operations, Entity API (ingeschakeld), Views, Chaos tools, File, Field, Field SQL storage, Libraries, System.

20 Nodes per page export. I will show my view if there are questions about it.

https://www.drupal.org/project/views_data_export didn’t work at this time of writing (9-3-2023; see this issue https://www.drupal.org/project/views_data_export/issues/3345475

2)       Terms with lineage through Taxonomy CSV import/export;  https://www.drupal.org/project/taxonomy_csv necessary modules: Taxonomy, Options, Field, Field SQL storage

3)       Url aliases through MYSQL query (I didn’t find a module which did the job).
MYSQL QUERY select source, alias from url_alias INTO OUTFILE '/tmp/url_aliases.csv' FIELDS TERMINATED BY ',' ENCLOSED BY '"' LINES TERMINATED BY '\n';

See https://drupal.stackexchange.com/questions/220448/how-do-i-export-the-list-of-url-alias-into-an-excel-or-csv

4)       Url redirect through Path redirect import; https://www.drupal.org/project/path_redirect_import/ necessary modules: Redirect

using this patch for right encoding: https://www.drupal.org/project/path_redirect_import/issues/2897489 and patch https://www.drupal.org/files/issues/path_redirect_import-url_decoding-2897489-3.patch

5) Metadata through Metatag Import Export CSV https://www.drupal.org/project/metatag_import_export_csv necessary modules: Metatag, System, Chaos tools, Token, Path.

---

When the views/panels/templates are ready in Drupal 10 site I think with this I can build up the site again.

1) getting terms in with lineage
2) getting nodes in with relations to terms
3) getting url-aliasses in with relations to the right nodes. How I don't know yet.
4) getting url-redirects in as such that the SEO of the site will be still the same
5) getting metadata in on the right terms and nodes. 

How do I get those into Drupal 10 please? Is there a scenario with modules possible?

Comments

Summit’s picture

Hi, I made a clean issue to do this through Migrate. See https://www.drupal.org/project/weblinks/issues/3353910 
Fixture file allready made. Can anyone help me with the next steps?
Thanks in advance, greetings,