Skip to main content

Migrating a Drupal 5 site to a Drupal 7 site.

I had to accomplish the task of migrating the content from a Drupal 5 site with 10,000+ nodes to a new Drupal 7 version. The caveat was that all of the node information needed to remain intact due to various links that were entered into the body of posts. My initial thought was to use a .csv file and import directly into the database. After some more research I discovered the migrate and migrate_d2d modules. After reading that content migration was likely going to be the normal process once Drupal 8 releases, I thought I'd better learn how to use these modules. Hence, I found the following articles online to help guide the way.

  1. http://www.acquia.com/blog/drupal-drupal-data-migration-part-1-basics
  2. https://www.acquia.com/blog/drupal-drupal-data-migration-part-2-architeā€¦

To get Drupal's core Poll module migrated from Drupal 5 to 7 I followed the examples from this patch: https://drupal.org/node/1763860


Comments