66
Mediacurrent Company Overview

Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Embed Size (px)

DESCRIPTION

Learn best practices for migrating content from a legacy content management system to Drupal. The presentation details how to approach the migration process, concepts behind data export and tips on importing data into Drupal.

Citation preview

Page 1: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Mediacurrent Company Overview

Page 2: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Mediacurrent Company Overview

Atlanta, GA based web consultancy exclusively focused in Drupal

Page 3: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Mediacurrent Company Overview

Atlanta, GA based web consultancy exclusively focused in Drupal

Full-service Drupal provider – front and back end development; specialize in enterprise level Drupal implementations

Page 4: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Mediacurrent Company Overview

Atlanta, GA based web consultancy exclusively focused in Drupal

Full-service Drupal provider – front and back end development; specialize in enterprise level Drupal implementations

Acquia Gold Development Partner

Page 5: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Mediacurrent Company Overview

Atlanta, GA based web consultancy exclusively focused in Drupal

Full-service Drupal provider – front and back end development; specialize in enterprise level Drupal implementations

Acquia Gold Development Partner

Page 6: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Define Drupal Site Requirements

Page 7: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Define Drupal Site Requirements

Determine how your users will interact with the legacy data on the new site

Page 8: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Define Drupal Site Requirements

Determine how your users will interact with the legacy data on the new site

Is there any legacy data that can be leveraged to create new content? Example: using an address record to populate a Google Map

Page 9: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Define Drupal Site Requirements

Determine how your users will interact with the legacy data on the new site

Is there any legacy data that can be leveraged to create new content? Example: using an address record to populate a Google Map

Will content need to be re-categorized in the new site?

Page 10: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Sizing Up Legacy Content

Page 11: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Sizing Up Legacy Content

Where does your content “live” and what format is it in?

Page 12: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Sizing Up Legacy Content

Where does your content “live” and what format is it in?

Determine which parts of legacy content will be used on the new site and what new meta data will possibly need to be added during the export

Page 13: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Prepare Content Export

Page 14: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Prepare Content Export

Generate CSV file containing legacy content data (most Drupal contributed modules have CSV support)

Page 15: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Prepare Content Export

Generate CSV file containing legacy content data (most Drupal contributed modules have CSV support)

Make sure steps to generate CSV file are well-documented, especially if making complex data transformations in the export logic

Page 16: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Drupal Content Basics

Page 17: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Drupal Content Basics

A “node” in Drupal is the general term for describing a unit of content. A node can be a story, blog post or page for example.

Page 18: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Drupal Content Basics

A “node” in Drupal is the general term for describing a unit of content. A node can be a story, blog post or page for example.

A “content type” is a collection of fields that make up a node. Nodes can have one or more data fields and the content type serves as a container for those fields.

Page 19: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Drupal Content BasicsContent Type Node

Title field

Page 20: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

How is Legacy Content Stored in Drupal?

Page 21: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

How is Legacy Content Stored in Drupal?

Imported data is matched to a specific content type by way of a Drupal module or custom PHP / MySQL scripts

Page 22: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

How is Legacy Content Stored in Drupal?

Imported data is matched to a specific content type by way of a Drupal module or custom PHP / MySQL scripts

Legacy content fields map to various content types’ fields such as text, numbers, checkboxes / radio button groups, categories, images, etc.

Page 23: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

How is Legacy Content Stored in Drupal?

Imported data is matched to a specific content type by way of a Drupal module or custom PHP / MySQL scripts

Legacy content fields map to various content types’ fields such as text, numbers, checkboxes / radio button groups, categories, images, etc.

Each row of the CSV export file becomes a node in Drupal’s database

Page 24: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Methods for Importing Content to Drupal

Page 25: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Methods for Importing Content to Drupal

Drupal contributed modules such as Node Import, Migrate and Transformations. See http://groups.drupal.org/node/21338 for comparison of various Drupal data export/import modules

Page 26: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Methods for Importing Content to Drupal

Drupal contributed modules such as Node Import, Migrate and Transformations. See http://groups.drupal.org/node/21338 for comparison of various Drupal data export/import modules

Custom PHP scripts (it’s possible to bootstrap just the database layer of Drupal to cut down on the code required) or custom Drupal modules

Page 27: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Methods for Importing Content to Drupal

Drupal contributed modules such as Node Import, Migrate and Transformations. See http://groups.drupal.org/node/21338 for comparison of various Drupal data export/import modules

Custom PHP scripts (it’s possible to bootstrap just the database layer of Drupal to cut down on the code required) or custom Drupal modules

Custom MySQL scripts for database to database migration

Page 28: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Advantages of Migrating to Open-Source Drupal at the Enterprise Level

Page 29: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Advantages of Migrating to Open-Source Drupal at the Enterprise Level

Scalable

Page 30: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Advantages of Migrating to Open-Source Drupal at the Enterprise Level

Scalable Social networking feature-rich

Page 31: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Advantages of Migrating to Open-Source Drupal at the Enterprise Level

Scalable Social networking feature-rich

Flexible,easy to

customize

Page 32: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Advantages of Migrating to Open-Source Drupal at the Enterprise Level

Scalable Social networking feature-rich

Flexible,easy to

customize

$Lower total

cost of ownership

Page 33: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Case Study: In-Fisherman.com

Page 34: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Case Study: In-Fisherman.com

Complements the print magazine In-fisherman

Page 35: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Case Study: In-Fisherman.com

Complements the print magazine In-fisherman

Initially built with proprietary CMS

Page 36: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Case Study: In-Fisherman.com

Complements the print magazine In-fisherman

Initially built with proprietary CMS

Averages 67,789 user visits, 266,379 page visits, and an average of 4:1 page visits/user visits per month

Page 37: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Why Did In-Fisherman.com Choose Drupal?

Page 38: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Why Did In-Fisherman.com Choose Drupal?

Multi-site / multi-database capability

Page 39: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Why Did In-Fisherman.com Choose Drupal?

Multi-site / multi-database capability

Ability to run forums (forum module) and website on same platform with single sign-on capability

Page 40: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Why Did In-Fisherman.com Choose Drupal?

Multi-site / multi-database capability

Ability to run forums (forum module) and website on same platform with single sign-on capability

Built-in social networking features offering commenting, tagging and user generated content

Page 41: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Why Did In-Fisherman.com Choose Drupal?

Multi-site / multi-database capability

Ability to run forums (forum module) and website on same platform with single sign-on capability

Built-in social networking features offering commenting, tagging and user generated content

Active development community

Page 42: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Lessons Learned from In-Fisherman.com

Page 43: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Lessons Learned from In-Fisherman.com

Challenge

Migrate 1500+ articles from Filemaker Pro database to

Drupal 6 for In-Fisherman.com redesign

Page 44: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Obstacles

Page 45: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Obstacles

Filemaker Pro only exported XML data, needed to transform data to CSV format

Page 46: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Obstacles

Filemaker Pro only exported XML data, needed to transform data to CSV format

Image files stored in disparate file system with no URL pointer stored in Filemaker Pro

Page 47: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Obstacles

Filemaker Pro only exported XML data, needed to transform data to CSV format

Image files stored in disparate file system with no URL pointer stored in Filemaker Pro

Compromised data integrity

Page 48: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Obstacles

Filemaker Pro only exported XML data, needed to transform data to CSV format

Image files stored in disparate file system with no URL pointer stored in Filemaker Pro

Compromised data integrity

Page 49: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Solution

Page 50: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Solution

Transform XML content to CSV format with custom PHP script

Page 51: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Solution

Transform XML content to CSV format with custom PHP script

Insert Drupal image filepath during transformation and transfer image files via FTP to application server

Page 52: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Solution

Customize Node Import module to handle importing CSV records into Drupal

Page 53: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Drupal’s Impact on In-Fisherman.com

Page 54: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Drupal’s Impact on In-Fisherman.com

Flexible web platform offering ability to easily add new features without compromising core business logic

Page 55: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Drupal’s Impact on In-Fisherman.com

Flexible web platform offering ability to easily add new features without compromising core business logic

Faster page loads

Page 56: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Drupal’s Impact on In-Fisherman.com

Flexible web platform offering ability to easily add new features without compromising core business logic

Faster page loads

Better SEO strategy: SEO-friendly URL’s via the Pathauto module, HTML title and meta-tag control at the article level

Page 57: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Drupal’s Impact on In-Fisherman.com

Flexible web platform offering ability to easily add new features without compromising core business logic

Faster page loads

Better SEO strategy: SEO-friendly URL’s via the Pathauto module, HTML title and meta-tag control at the article level

Biggest ROI: no enterprise-level licensing fees

Page 58: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Keys to a Successful Import

Page 59: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Keys to a Successful Import

Ensure all project stakeholders are familiar with the structure of the legacy content and its intended use on the new site

Page 60: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Keys to a Successful Import

Ensure all project stakeholders are familiar with the structure of the legacy content and its intended use on the new site

Run several “test” imports

Page 61: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Keys to a Successful Import

Ensure all project stakeholders are familiar with the structure of the legacy content and its intended use on the new site

Run several “test” imports

Make sure a Drupal consultant is available during the final import

Page 62: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Keys to a Successful Import

Ensure all project stakeholders are familiar with the structure of the legacy content and its intended use on the new site

Run several “test” imports

Make sure a Drupal consultant is available during the final import

Break down content migration tasks into small manageable steps

Page 63: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Keys to a Successful Import

Ensure all project stakeholders are familiar with the structure of the legacy content and its intended use on the new site

Run several “test” imports

Make sure a Drupal consultant is available during the final import

Break down content migration tasks into small manageable steps

Document what works along the way

Page 64: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Interested in Migrating Your Current CMS to Drupal?

Page 65: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Interested in Migrating Your Current CMS to Drupal?

Contact Mediacurrent at www.mediacurrent.com/contact to schedule a discovery call!

Page 66: Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal

Interested in Migrating Your Current CMS to Drupal?

Contact Mediacurrent at www.mediacurrent.com/contact to schedule a discovery call!

For help on how to build an enterprise-level website with Drupal, go to

www.mediacurrent.com/download-white-paper