Posts

Showing posts with the label imagefield migration

D6-D8 migration: Migration of Drupal 6 Images (ImageField module) to Drupal 8 Images works out of the Box!

Image
We are having a Drupal 6 site, which is using ImageField module, for adding images in content type. The content and images migration to Drupal 8 site works out of the box!! We carried out following steps to see it in action: 1) In D6 site, we added Image field, as provided by ImageField module, in Page content type. We configured this field to have Alt/Title information along with Unlimited number of values. After adding the field, we created a Page content and uploaded multiple images in Image field along with Alt/Title info. D6 site with Page content looks like below, 2) Next we installed D8 site with default settings. Afterwards we enabled Drupal Upgrade and Migrate Tools contrib modules to do the migration, drush en migrate_upgrade migrate_tools -y 3) Then we executed the migration using Drush. Either we can run the full migration like below, drush migrate-import --all OR we can execute specific migrations for content and images like below, drush migrate-impo...