SlideShare a Scribd company logo
Upgrades and
Migrations, how?
David Lanier
@nadavoid
ThinkShout

PREFACE
Overview
• Getting your Drupal 6 site onto Drupal 7
• Use traditional upgrade or migrate data to
new site

• Look at the benefits and drawbacks of both
approaches

• Primarily for people who have not gone
through either process

Your site is unique, so take what you find today and let it help you in your decision making. I
won't be saying always do it one way.
Both approaches do require work.
An Architecture
Metaphor
• Changing the foundation (codebase) of
your house
Basic pieces
• Codebase (core, modules, themes, libraries)
• Database
• Files (images, pdfs, mp3s, etc.)

Files = content.
Database & Files together = "data"
Deployment

• Same issues as replacing any site, unless the
D6 site is incredibly simple.

I won't be dwelling on this today because it is such a common task.
Upgrade overview
• Swap out the foundation, house in place.
• Replace codebase, run upgrade scripts on
existing data & files.

• Built into core and contrib.
• UI based
Lift the house, swap in a new foundation, set the house down on the new foundation.
The upgrade scripts essentially upgrade the plumbing and wiring to be compatible with the
new foundation.
UI centered, but drush can be used for most upgrades as well. 'drush updb'
Upgrade drawbacks
• Hard to get rid of legacy cruft
• Field names
• Content type structures
• Anything else that seems old or odd
Migrate overview
• Build new house on a new foundation.
• Build new site. Import data from old site.
• Write custom code to define the specifics
of the migration.

The details of a migration must be handled by writing custom code. There is also helpful
support in the UI.
Migrate drawbacks
• Very code-centric
• Very granular

Averse to custom coding? Maybe prefer upgrade. But Migrate isn't so hard, I promise!
Granular: you generally have to specify everything (image alt, title, language, etc.). Of course,
that could also be a good thing. You're in full control.
Feeds
• Best fit is to regularly import new data.
• Not usually a good fit for full migrations.
• Easy to learn, but it usually falls short when
getting into the details, such as handling
relationships and very large datasets.

I really like feeds, and it can be super for importing data into Drupal. But it's just not a
module I generally recommend for a full site migration.
Initial preparation
• Regular D7 system requirements
(drupal.org/requirements)

• Local development environment that can
support several copies of the site

• Reference site
• Data source
• Development
CHAPTER 1
D7: PHP 5.3 recommended, MySQL 5.
Local Dev: for testing, experimenting, practicing
Architecture of current
site
• Inventory of modules, libraries, themes
•drush pml | grep Enabled
• Content Types, fields
• Views, other configuration
• Important pages, capabilities, workflows
• Reference copy of the site
Save lists of directories (list of modules)
Save drush output
Save certain pages
Have a clear idea of exactly what it is you're upgrading from
Handy "archeology"
modules
• drupal.org/project/sitedoc
• drupal.org/project/hacked
Determine upgrade
path
• Module to D7 options
• same module (pathauto)
• different module
• moved into core (CCK to fields)
• nothing available, so custom solution
This is where most of the upgrade work will be.
Be sure to check if D7 version of modules have their own dependencies. Views adds a ctools
dependency. Others will likely require the libraries module.
Determine upgrade
path
• Custom modules
• Converting 6.x modules to 7.x:
http://drupal.org/node/224333

• Coder module
Any custom code will need to be updated to match the Drupal 7 API and coding standards.
Determine upgrade
path
• Theme
• Update or replace base theme
• Update or rebuild subtheme
• Upgrading 6.x themes to 7.x

https://drupal.org/node/254940

A custom theme is custom code, so needs same attention.
Prepare the source
• Install a copy of the site to use as the
source.

• Remove all disabled or unused modules.
• Update all remaining modules to their
latest D6 versions.
How to Upgrade
• Practice on a copy of the site.
• 3 dev sites:
• Pristine copy of site for reference.
• Copy of site with everything D6 updated.
• Copy that is actually getting upgraded.
CHAPTER 2
Today's Example
• RidePDW.com Portland Design Works
• Portland company that develops bicycle
accessories

I experimented with an upgrade, but ended up doing a migration instead, primarily because
of keeping data in sync.
Drupal upgrades and migrations. BAD Camp 2013 version
Process
• Commit after each step.
• Definitely after updating each module.
• Include db exports, as outside files.

DB Exports: if not in the repo, in their own folder.
Upgrade core
• Refer back to your list of all enabled
modules

• Disable all enabled contrib modules
• Switch theme to Garland, including the
admin theme
Upgrade core
• Use the copy of the site that you have for
actually upgrading

• Replace core files manually
• Delete core directories & files
• Add the new ones
• Download Drupal, move the files into
place

I generally prefer to swap in the new files/folders, rather than building up a new codebase.
(List of "incompatible" modules helps me know where I am)
Update the database
• Do 'drush updb' (Or use /update.php)
• Watch output, observe warnings
• Save output to refer back to
Update, drush example
Update, drush example
Update, drush example
Upgraded! (core only)
Core upgrade
complete!
• Yay!
• You're running Drupal 7 now
• Commit the current state to a repo
• Next step, contrib modules
Upgrading contrib
modules
• Upgrade one at a time
• Module's d.o page
• Module's README.txt or INSTALL.txt or
UPGRADE.txt

• Check for special steps, instructions
• Check for new dependencies
Do a little research on each module before trying. Then go ahead and try.
Dependencies: views needs ctools. ubercart needs rules. rules needs entity.
Add the new code
• This works: drush dl modulename
• Or, delete existing, then add the new
Where to start?
• Start with the most foundational
• ctools
• views
• Or most standalone
• pathauto
• devel
Views
• Replace views code
• Update database
• Enable the upgraded module

This is the usual process. But it's still best to see the module's upgrade documentation first.
Views database updated
Enable views

Views requires ctools now.
Enable views

After downloading ctools
Upgrade CCK
• Download D7 version of CCK
• Enable the content_migrate module
• Use the UI to migrate CCK fields to drupal
core fields

Kind of a special case, because it's a major architectural change, bringing fields into core.
Also common pattern: contrib module providing upgrade path into core.
Available fields

Provides suggestions of things to do, and notes about what it will do.
Caveat: it lets you migrate fields, even if the relevant content type does not yet exist properly
in the upgraded site. Should content types come before fields?
Converted Fields
Unavailable Fields
Migrate CCK fields
• Install required modules
• Enable modules that define content types
• Sometimes several layers of dependencies
emerge

• Can end up being messy and difficult to
fully successfully migrate all CCK fields.

dependency chain: Nodereference field is used to refer to products. Products are defined by
ubercart. Ubercart requires Rules. Rules requires entity api.
That was Upgrade

• Mainly a taste of what's in store when
doing an upgrade
Next up: Migrate

CHAPTER 3
How to Migrate
• Building a whole new house, with its own
new foundation.

• Then we will move all of our data into it.
Plan and get organized
• Collect data and files into a safe place, to
use as a pristine, read-only source.

• Make a spreadsheet or list to plan out your
mapping

• Build out the architecture of the new site
Identify questionable or troublesome pieces, e.g. whether to keep certain fields.
Build: at least content types & fields.
Anything else that is needed by your migrated data.
Set up environments
• Install or get access to a reference site
• Install source database
• Install a built destination site
• An IDE for exploring the migrate API
reference site = this is how it currently is. must be inspectable.
Migrate using IDE
Start a new module
• Install the migrate module
• Create a new module that extends classes
that are in the migrate module
Important functions
• addFieldMapping()
• addSimpleMappings()
• defaultValue()
• sourceMigration()
• addUnmigratedDestinations()
• addUnmigratedSources()
Just to get a flavor of what you will be using.
Module structure
• .info file: file list
• .module file: specify migrations via
hook_migrate_api()

• Migration class files: handle the details and
mappings of a migration

• name: sitename_migration
.info file: Mainly lists files that are used.
.module file: register migrations and their classes by using hook_migrate_api().
Migration class files: I generally prefer one class per file, but there's nothing wrong with
having multiple classes in one file too.
Directory list

Most basic structure that provides a functional migration. But there are many more
complicated examples.
.info file
.module file
class file
How did you find out?
• Comments in the migrate module
• migrate_example module (inside migrate)
• articles on btmash.com
Additional Docs
• Source code
• Suggestions in IDE
• Migrate handbook at drupal.org/migrate
Before enabling custom
migrate module
Migration class
• Set description
• Define database source
• Create query to get data
• Tell migrate that this query is the source of
this migration

• Do the mappings
This is essential before you can enable your custom module without errors.
Set description
Set database
Define the query
Set the source
Set the destination
Set up table mapping

Enables migrate to map source rows to destination rows
Map first field
Enable the module

List of migrations & their status.
Status of mappings.
There are equivalent tools in drush.
Overview
Destination
Source
Done
Mapping process
• Add fields as needed to the query
• Add mappings until the mapping screen
clear.

Adding fields will usually mean adding joins.
Mapping a subfield
Mapping a reference

From a ProductHelpMigration
Self references
• Handles creating references to same
import

• Uses a createStub function
Mapping a file field
Term References
• Use a dependent migration
• Or create as needed
Repeats
• "Update" completely overwrites
• Highwater mark

In addition to rollback and reimport.
highwater mark, important for bringing in added content.
brings in any new items with a greater value of highwater than last recorded.
No other comparisons. (no import "changed")
Manipulating source
data

• prepareRow() function

Looking up a value for 'weight_units' from another table.
migrate_extras
• Provides support for many contrib modules
• Addressfield, entity api, more
• Excellent examples of custom handlers
migrate_d2d
• Current stable version (2.0)
• Ends up being somewhat cumbersome.
• Dev version (2.1-beta1)
• Looks very promising
Not migrate_d2d 2.0:
- complicated things for me as a newcomer to the migrate framework.
- Added too many layers and did not streamline things for me.
- Had to unmap many things that it automatically mapped for me.
migrate_d2d 2.1
• Provides migration setup wizard
• Provides UI for field mapping
• Requires 2.6 version of Migrate module,
which is also still in development
Step 1
Step 2
Step 3
Step 4
Step 5
Dashboard (Groups)
Migrations
Product migration
Migration mappings
Migration mappings 2
Migration mappings 3
Pretty slick!
migrate_d2d drawbacks
• Still really new (alpha/beta/dev status)
• Making changes to initial settings

overwrites existing migrate configuration

• Cannot (yet) export configuration
• drupal.org/node/1983404
• Uncertain how to add regular migrate code
to what is done in the UI

• drupal.org/node/2118243
Making changes, such as database credentials or adding a content type.
Regular programmatic code = prepareRow, anything that the UI doesn't provide but is
available in the API.
Migrate
• Showed important parts
• There's a LOT more there
QA. Did it work?
• Regardless whether upgrade or migrate
• Have someone else check your work
• Have the client check your work
• Pass any existing acceptance tests
SIDEBAR
Make certain. This will be the content of the next version of this site.
QA Questions
• Correct content?
• Correct versions of content?
• Complete number of fields?
• Complete metadata? (urls, relations, dates,
authors, tags)
• Complete number of nodes?
• Images and media? (block live site)
Which way do I go?

• WHY do you want to go?

CHAPTER 4
First thing to think about is why specifically do you want to move to Drupal 7?
Are there architectural things that need to be changed in your site, in order to take advantage
of what you want from D7?
Traditional upgrade if:
• Drupal site, only one version back
• Simple site
• Few contrib modules
• End result should mirror current site
• Content is infrequently updated
• A little downtime is OK
Downtime can still be avoided, using good deployment methods.
Also, if limited time is available (and the other conditions are met).
Migrate if:
• Drupal 5 site, or even a different platform
• Complex site
• Many contrib modules
• New site needs structural changes or
enhancements

• Content is frequently updated
• Minimal downtime is very important
Conclusion (?)
• traditional upgrade
• migrate

If you want something that is quick and your site's upgrade path supports it, go with a
traditional upgrade.
If you want to make a lot of structural changes and need fine control over the upgrade path,
go with migrate.
Future of upgrades and
migrations
• Migrate is being added to Drupal 8 core, to
provide a smooth upgrade path from D6
and D7 core.

• https://groups.drupal.org/imp
• http://www.drupal4hu.com/node/381
Bookmarks
• http://drupalcode.org/project/drupal.git/
blob/refs/heads/7.x:/UPGRADE.txt
• https://drupal.org/project/drush_sup
• http://drupal.org/project/migrate
• http://drupal.org/project/migrate_d2d
• http://drupal.org/migrate
• http://drupal.org/project/coder (upgrade)
• http://drupal.org/project/hacked
• http://drupal.org/project/upgrade_status
More Bookmarks
• Making the case for the migrate module
• http://www.verbosity.ca/getting-contentdrupal-migrate-module
• BTMash articles
• http://btmash.com/article/2011-03-02/
migrating-content-part-1-users
• http://btmash.com/article/2011-03-25/
migrating-content-part-2-nodes
• http://btmash.com/article/2011-04-27/
migrating-content-part-3-nodes-your-ownfield-handlers
Thanks!

More Related Content

PDF
ODP
Conference Migrate to Drupal 8 by Leon Cros at Drupal Developer Days 2015 in ...
PPTX
Drupal 6 to Drupal 8 Migration
PPTX
#D8CX: Upgrade your modules to Drupal 8 (Part 1 and 2)
PDF
Migrate to Drupal 8
PDF
Drupal Best Practices
PPT
Are you ready for Drupal 8?
PDF
Everything You Need to Know About the Top Changes in Drupal 8
Conference Migrate to Drupal 8 by Leon Cros at Drupal Developer Days 2015 in ...
Drupal 6 to Drupal 8 Migration
#D8CX: Upgrade your modules to Drupal 8 (Part 1 and 2)
Migrate to Drupal 8
Drupal Best Practices
Are you ready for Drupal 8?
Everything You Need to Know About the Top Changes in Drupal 8

What's hot (19)

PPTX
Top 8 Improvements in Drupal 8
PDF
Evolution of Drupal and the Drupal community
PDF
Yet Another Drupal Development/Deployment Presentation
PDF
How to Migrate Drupal 6 to Drupal 8?
PPT
Taking your module from Drupal 6 to Drupal 7
PDF
Drupal 6 to 7 migration guide
PDF
Upgrades and migrations
PPTX
History of Drupal: From Drop 1.0 to Drupal 8
PDF
10 New Things You Can Do with Drupal 8 Out-of-the-Box
PDF
Speedrun: Build a Website with Panels, Media, and More in 45 Minutes
PPTX
Database Migrations with Gradle and Liquibase
PDF
Plain english guide to drupal 8 criticals
ODP
Upgrading your site from Drupal 6 to Drupal 7
PPT
Taking your site from Drupal 6 to Drupal 7
PDF
Blisstering drupal module development ppt v1.2
PPTX
Drupal 7 vs. Drupal 8: A Contrast of Multilingual Support
PDF
Drupal 8 - A Brief Introduction
PDF
One drupal to rule them all - Drupalcamp Caceres
Top 8 Improvements in Drupal 8
Evolution of Drupal and the Drupal community
Yet Another Drupal Development/Deployment Presentation
How to Migrate Drupal 6 to Drupal 8?
Taking your module from Drupal 6 to Drupal 7
Drupal 6 to 7 migration guide
Upgrades and migrations
History of Drupal: From Drop 1.0 to Drupal 8
10 New Things You Can Do with Drupal 8 Out-of-the-Box
Speedrun: Build a Website with Panels, Media, and More in 45 Minutes
Database Migrations with Gradle and Liquibase
Plain english guide to drupal 8 criticals
Upgrading your site from Drupal 6 to Drupal 7
Taking your site from Drupal 6 to Drupal 7
Blisstering drupal module development ppt v1.2
Drupal 7 vs. Drupal 8: A Contrast of Multilingual Support
Drupal 8 - A Brief Introduction
One drupal to rule them all - Drupalcamp Caceres
Ad

Viewers also liked (14)

PPTX
Web Development Within your Means
PPTX
Content Strategy in Popular Culture
PPTX
If I Only Had a Frame(work): 2016 NTC
PDF
It Takes Two: The Case for CRM’s in Drupal
PPTX
Content Strategy 101
PPT
People Matter Website Relaunch Before and After
PDF
Setting Up for Success: The Kickoff Meeting
KEY
Meet ThinkShout, Inc.
PPTX
Discover Discovery
PDF
Fundraising with Drupal
PPTX
Cut Through the Noise: Listen to Your Audience
KEY
Discovery and Requirements Gathering
PPTX
Launching for the Web
PDF
Sample Website Proposal Presentation
Web Development Within your Means
Content Strategy in Popular Culture
If I Only Had a Frame(work): 2016 NTC
It Takes Two: The Case for CRM’s in Drupal
Content Strategy 101
People Matter Website Relaunch Before and After
Setting Up for Success: The Kickoff Meeting
Meet ThinkShout, Inc.
Discover Discovery
Fundraising with Drupal
Cut Through the Noise: Listen to Your Audience
Discovery and Requirements Gathering
Launching for the Web
Sample Website Proposal Presentation
Ad

Similar to Drupal upgrades and migrations. BAD Camp 2013 version (20)

PDF
Upgrading to Drupal 7
PDF
Migrating to Drupal 8: How to Migrate Your Content and Minimize the Risks
PDF
Tools to Upgrade to Drupal 8
PDF
Drupal migrations in 2018 - presentation at DrupalCon in Nashville
PDF
MIGRATION - PAIN OR GAIN?
PDF
October 2016 - USG Rock Eagle - Everything You Need to Know to Plan Your Drup...
ODP
Migrations
PPTX
Drupal Migration
PDF
Drupal Migrations in 2018
PPTX
Best Practices for Moving to Drupal 9
PDF
Migrating data to Drupal 8
PPT
PPPA D8 presentation Drupal For Gov_0
PDF
Migrate all the things!
PDF
Migrate for Site Builders from MidCamp 2016
PPTX
Drupal migrations in 2018 - SFDUG, March 8, 2018
PPTX
The long and the short of migrating to Drupal
PDF
Best Practices for Moving to Drupal 9
PPTX
Resources for Navigating Drupal Upgrades: Versions 6 Through 8 And What It Me...
PDF
[Srijan Wednesday Webinars] Simplifying Migration to Drupal 8
Upgrading to Drupal 7
Migrating to Drupal 8: How to Migrate Your Content and Minimize the Risks
Tools to Upgrade to Drupal 8
Drupal migrations in 2018 - presentation at DrupalCon in Nashville
MIGRATION - PAIN OR GAIN?
October 2016 - USG Rock Eagle - Everything You Need to Know to Plan Your Drup...
Migrations
Drupal Migration
Drupal Migrations in 2018
Best Practices for Moving to Drupal 9
Migrating data to Drupal 8
PPPA D8 presentation Drupal For Gov_0
Migrate all the things!
Migrate for Site Builders from MidCamp 2016
Drupal migrations in 2018 - SFDUG, March 8, 2018
The long and the short of migrating to Drupal
Best Practices for Moving to Drupal 9
Resources for Navigating Drupal Upgrades: Versions 6 Through 8 And What It Me...
[Srijan Wednesday Webinars] Simplifying Migration to Drupal 8

Recently uploaded (20)

PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PPTX
A Presentation on Artificial Intelligence
PDF
Approach and Philosophy of On baking technology
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
KodekX | Application Modernization Development
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
CIFDAQ's Market Insight: SEC Turns Pro Crypto
The AUB Centre for AI in Media Proposal.docx
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
20250228 LYD VKU AI Blended-Learning.pptx
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
MYSQL Presentation for SQL database connectivity
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
A Presentation on Artificial Intelligence
Approach and Philosophy of On baking technology
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Unlocking AI with Model Context Protocol (MCP)
Advanced methodologies resolving dimensionality complications for autism neur...
“AI and Expert System Decision Support & Business Intelligence Systems”
KodekX | Application Modernization Development
Mobile App Security Testing_ A Comprehensive Guide.pdf
Understanding_Digital_Forensics_Presentation.pptx
Per capita expenditure prediction using model stacking based on satellite ima...

Drupal upgrades and migrations. BAD Camp 2013 version

  • 1. Upgrades and Migrations, how? David Lanier @nadavoid ThinkShout PREFACE
  • 2. Overview • Getting your Drupal 6 site onto Drupal 7 • Use traditional upgrade or migrate data to new site • Look at the benefits and drawbacks of both approaches • Primarily for people who have not gone through either process Your site is unique, so take what you find today and let it help you in your decision making. I won't be saying always do it one way. Both approaches do require work.
  • 3. An Architecture Metaphor • Changing the foundation (codebase) of your house
  • 4. Basic pieces • Codebase (core, modules, themes, libraries) • Database • Files (images, pdfs, mp3s, etc.) Files = content. Database & Files together = "data"
  • 5. Deployment • Same issues as replacing any site, unless the D6 site is incredibly simple. I won't be dwelling on this today because it is such a common task.
  • 6. Upgrade overview • Swap out the foundation, house in place. • Replace codebase, run upgrade scripts on existing data & files. • Built into core and contrib. • UI based Lift the house, swap in a new foundation, set the house down on the new foundation. The upgrade scripts essentially upgrade the plumbing and wiring to be compatible with the new foundation. UI centered, but drush can be used for most upgrades as well. 'drush updb'
  • 7. Upgrade drawbacks • Hard to get rid of legacy cruft • Field names • Content type structures • Anything else that seems old or odd
  • 8. Migrate overview • Build new house on a new foundation. • Build new site. Import data from old site. • Write custom code to define the specifics of the migration. The details of a migration must be handled by writing custom code. There is also helpful support in the UI.
  • 9. Migrate drawbacks • Very code-centric • Very granular Averse to custom coding? Maybe prefer upgrade. But Migrate isn't so hard, I promise! Granular: you generally have to specify everything (image alt, title, language, etc.). Of course, that could also be a good thing. You're in full control.
  • 10. Feeds • Best fit is to regularly import new data. • Not usually a good fit for full migrations. • Easy to learn, but it usually falls short when getting into the details, such as handling relationships and very large datasets. I really like feeds, and it can be super for importing data into Drupal. But it's just not a module I generally recommend for a full site migration.
  • 11. Initial preparation • Regular D7 system requirements (drupal.org/requirements) • Local development environment that can support several copies of the site • Reference site • Data source • Development CHAPTER 1 D7: PHP 5.3 recommended, MySQL 5. Local Dev: for testing, experimenting, practicing
  • 12. Architecture of current site • Inventory of modules, libraries, themes •drush pml | grep Enabled • Content Types, fields • Views, other configuration • Important pages, capabilities, workflows • Reference copy of the site Save lists of directories (list of modules) Save drush output Save certain pages Have a clear idea of exactly what it is you're upgrading from
  • 14. Determine upgrade path • Module to D7 options • same module (pathauto) • different module • moved into core (CCK to fields) • nothing available, so custom solution This is where most of the upgrade work will be. Be sure to check if D7 version of modules have their own dependencies. Views adds a ctools dependency. Others will likely require the libraries module.
  • 15. Determine upgrade path • Custom modules • Converting 6.x modules to 7.x: http://drupal.org/node/224333 • Coder module Any custom code will need to be updated to match the Drupal 7 API and coding standards.
  • 16. Determine upgrade path • Theme • Update or replace base theme • Update or rebuild subtheme • Upgrading 6.x themes to 7.x https://drupal.org/node/254940 A custom theme is custom code, so needs same attention.
  • 17. Prepare the source • Install a copy of the site to use as the source. • Remove all disabled or unused modules. • Update all remaining modules to their latest D6 versions.
  • 18. How to Upgrade • Practice on a copy of the site. • 3 dev sites: • Pristine copy of site for reference. • Copy of site with everything D6 updated. • Copy that is actually getting upgraded. CHAPTER 2
  • 19. Today's Example • RidePDW.com Portland Design Works • Portland company that develops bicycle accessories I experimented with an upgrade, but ended up doing a migration instead, primarily because of keeping data in sync.
  • 21. Process • Commit after each step. • Definitely after updating each module. • Include db exports, as outside files. DB Exports: if not in the repo, in their own folder.
  • 22. Upgrade core • Refer back to your list of all enabled modules • Disable all enabled contrib modules • Switch theme to Garland, including the admin theme
  • 23. Upgrade core • Use the copy of the site that you have for actually upgrading • Replace core files manually • Delete core directories & files • Add the new ones • Download Drupal, move the files into place I generally prefer to swap in the new files/folders, rather than building up a new codebase. (List of "incompatible" modules helps me know where I am)
  • 24. Update the database • Do 'drush updb' (Or use /update.php) • Watch output, observe warnings • Save output to refer back to
  • 29. Core upgrade complete! • Yay! • You're running Drupal 7 now • Commit the current state to a repo • Next step, contrib modules
  • 30. Upgrading contrib modules • Upgrade one at a time • Module's d.o page • Module's README.txt or INSTALL.txt or UPGRADE.txt • Check for special steps, instructions • Check for new dependencies Do a little research on each module before trying. Then go ahead and try. Dependencies: views needs ctools. ubercart needs rules. rules needs entity.
  • 31. Add the new code • This works: drush dl modulename • Or, delete existing, then add the new
  • 32. Where to start? • Start with the most foundational • ctools • views • Or most standalone • pathauto • devel
  • 33. Views • Replace views code • Update database • Enable the upgraded module This is the usual process. But it's still best to see the module's upgrade documentation first.
  • 37. Upgrade CCK • Download D7 version of CCK • Enable the content_migrate module • Use the UI to migrate CCK fields to drupal core fields Kind of a special case, because it's a major architectural change, bringing fields into core. Also common pattern: contrib module providing upgrade path into core.
  • 38. Available fields Provides suggestions of things to do, and notes about what it will do. Caveat: it lets you migrate fields, even if the relevant content type does not yet exist properly in the upgraded site. Should content types come before fields?
  • 41. Migrate CCK fields • Install required modules • Enable modules that define content types • Sometimes several layers of dependencies emerge • Can end up being messy and difficult to fully successfully migrate all CCK fields. dependency chain: Nodereference field is used to refer to products. Products are defined by ubercart. Ubercart requires Rules. Rules requires entity api.
  • 42. That was Upgrade • Mainly a taste of what's in store when doing an upgrade
  • 44. How to Migrate • Building a whole new house, with its own new foundation. • Then we will move all of our data into it.
  • 45. Plan and get organized • Collect data and files into a safe place, to use as a pristine, read-only source. • Make a spreadsheet or list to plan out your mapping • Build out the architecture of the new site Identify questionable or troublesome pieces, e.g. whether to keep certain fields. Build: at least content types & fields. Anything else that is needed by your migrated data.
  • 46. Set up environments • Install or get access to a reference site • Install source database • Install a built destination site • An IDE for exploring the migrate API reference site = this is how it currently is. must be inspectable.
  • 48. Start a new module • Install the migrate module • Create a new module that extends classes that are in the migrate module
  • 49. Important functions • addFieldMapping() • addSimpleMappings() • defaultValue() • sourceMigration() • addUnmigratedDestinations() • addUnmigratedSources() Just to get a flavor of what you will be using.
  • 50. Module structure • .info file: file list • .module file: specify migrations via hook_migrate_api() • Migration class files: handle the details and mappings of a migration • name: sitename_migration .info file: Mainly lists files that are used. .module file: register migrations and their classes by using hook_migrate_api(). Migration class files: I generally prefer one class per file, but there's nothing wrong with having multiple classes in one file too.
  • 51. Directory list Most basic structure that provides a functional migration. But there are many more complicated examples.
  • 55. How did you find out? • Comments in the migrate module • migrate_example module (inside migrate) • articles on btmash.com
  • 56. Additional Docs • Source code • Suggestions in IDE • Migrate handbook at drupal.org/migrate
  • 58. Migration class • Set description • Define database source • Create query to get data • Tell migrate that this query is the source of this migration • Do the mappings This is essential before you can enable your custom module without errors.
  • 64. Set up table mapping Enables migrate to map source rows to destination rows
  • 66. Enable the module List of migrations & their status. Status of mappings. There are equivalent tools in drush.
  • 70. Done
  • 71. Mapping process • Add fields as needed to the query • Add mappings until the mapping screen clear. Adding fields will usually mean adding joins.
  • 73. Mapping a reference From a ProductHelpMigration
  • 74. Self references • Handles creating references to same import • Uses a createStub function
  • 75. Mapping a file field
  • 76. Term References • Use a dependent migration • Or create as needed
  • 77. Repeats • "Update" completely overwrites • Highwater mark In addition to rollback and reimport. highwater mark, important for bringing in added content. brings in any new items with a greater value of highwater than last recorded. No other comparisons. (no import "changed")
  • 78. Manipulating source data • prepareRow() function Looking up a value for 'weight_units' from another table.
  • 79. migrate_extras • Provides support for many contrib modules • Addressfield, entity api, more • Excellent examples of custom handlers
  • 80. migrate_d2d • Current stable version (2.0) • Ends up being somewhat cumbersome. • Dev version (2.1-beta1) • Looks very promising Not migrate_d2d 2.0: - complicated things for me as a newcomer to the migrate framework. - Added too many layers and did not streamline things for me. - Had to unmap many things that it automatically mapped for me.
  • 81. migrate_d2d 2.1 • Provides migration setup wizard • Provides UI for field mapping • Requires 2.6 version of Migrate module, which is also still in development
  • 94. migrate_d2d drawbacks • Still really new (alpha/beta/dev status) • Making changes to initial settings overwrites existing migrate configuration • Cannot (yet) export configuration • drupal.org/node/1983404 • Uncertain how to add regular migrate code to what is done in the UI • drupal.org/node/2118243 Making changes, such as database credentials or adding a content type. Regular programmatic code = prepareRow, anything that the UI doesn't provide but is available in the API.
  • 95. Migrate • Showed important parts • There's a LOT more there
  • 96. QA. Did it work? • Regardless whether upgrade or migrate • Have someone else check your work • Have the client check your work • Pass any existing acceptance tests SIDEBAR Make certain. This will be the content of the next version of this site.
  • 97. QA Questions • Correct content? • Correct versions of content? • Complete number of fields? • Complete metadata? (urls, relations, dates, authors, tags) • Complete number of nodes? • Images and media? (block live site)
  • 98. Which way do I go? • WHY do you want to go? CHAPTER 4 First thing to think about is why specifically do you want to move to Drupal 7? Are there architectural things that need to be changed in your site, in order to take advantage of what you want from D7?
  • 99. Traditional upgrade if: • Drupal site, only one version back • Simple site • Few contrib modules • End result should mirror current site • Content is infrequently updated • A little downtime is OK Downtime can still be avoided, using good deployment methods. Also, if limited time is available (and the other conditions are met).
  • 100. Migrate if: • Drupal 5 site, or even a different platform • Complex site • Many contrib modules • New site needs structural changes or enhancements • Content is frequently updated • Minimal downtime is very important
  • 101. Conclusion (?) • traditional upgrade • migrate If you want something that is quick and your site's upgrade path supports it, go with a traditional upgrade. If you want to make a lot of structural changes and need fine control over the upgrade path, go with migrate.
  • 102. Future of upgrades and migrations • Migrate is being added to Drupal 8 core, to provide a smooth upgrade path from D6 and D7 core. • https://groups.drupal.org/imp • http://www.drupal4hu.com/node/381
  • 103. Bookmarks • http://drupalcode.org/project/drupal.git/ blob/refs/heads/7.x:/UPGRADE.txt • https://drupal.org/project/drush_sup • http://drupal.org/project/migrate • http://drupal.org/project/migrate_d2d • http://drupal.org/migrate • http://drupal.org/project/coder (upgrade) • http://drupal.org/project/hacked • http://drupal.org/project/upgrade_status
  • 104. More Bookmarks • Making the case for the migrate module • http://www.verbosity.ca/getting-contentdrupal-migrate-module • BTMash articles • http://btmash.com/article/2011-03-02/ migrating-content-part-1-users • http://btmash.com/article/2011-03-25/ migrating-content-part-2-nodes • http://btmash.com/article/2011-04-27/ migrating-content-part-3-nodes-your-ownfield-handlers