Migration of node reference and terms in d6 to d8 using function hook_migrate_prepare_row
Here is how we have implemented. In our case we migration from d6 ‘story’ content type to d8 ‘common_content’ type.
…
Migration of node reference and terms in d6 to d8 using function hook_migrate_prepare_row
Here is how we have implemented. In our case we migration from d6 ‘story’ content type to d8 ‘common_content’ type.
…
In Drupal 8 there is file migration template core/modules/file/migration_templates/d6_file.yml
To Start copy the template into your custom migration module config/install folder and change the id, label and the migration_group:
…
To start with look for :
1.migrate_plus.migration.rb_d6_taxonomy_term.yml
Step 1
Mention your Drupal 6 DB details in settings.php Screenshot reference below
Step 2
Create your…
We took away huge learnings from the process and challenges. In this blog, we would like to share a starter that will be helpful to anyone working on such migrations.
…
We know Drupal 8 has a many levels of caching Render caching, Dynamic page caching, Twig template caching, When you are developing a module or a theme it is better to disable cache on the development stage rather than clearing cache for every change being made .