SlideShare une entreprise Scribd logo
1  sur  28
Télécharger pour lire hors ligne
Migra&ng 
17 
WP 
blogs 
on 
WIRED.com 
into 
one 
WordPress 
Install 
Kathleen 
Vignos 
@WordCampSF 
2014
Issue 
Kathleen 
Vignos 
WIRED: 
Magazine 
since 
1993 
@WordCampSF 
2014 @kathleencodes
Kathleen 
Vignos 
WIRED: 
Website 
since 
1994 
@WordCampSF 
2014 @kathleencodes
Cross 
Posts 
and 
Redirects 
Kathleen 
Vignos 
We 
Got 
99 
Problems... 
@WordCampSF 
2014 @kathleencodes 
Flat 
Files Old 
CMS 
20 
Years 
of 
Digital 
Content 
External 
Homepage 
Curator 
App 
Third-­‐Party 
Editorial 
Workflow 
App 
35+ 
Blogs
WordPress 
Problems: 
Separate 
Installs, 
Themes, 
Plugins 
Kathleen 
Vignos 
@WordCampSF 
2014 @kathleencodes
WordPress 
Problems: 
Upgrades 
and 
Deployments 
Kathleen 
Vignos 
@WordCampSF 
2014 @kathleencodes
WordPress 
Problems: 
35x2 
Separate 
Logins 
Kathleen 
Vignos 
@WordCampSF 
2014 @kathleencodes
WordPress 
Problems: 
Create 
User 
35x2 
Times 
Kathleen 
Vignos 
@WordCampSF 
2014 @kathleencodes
Kathleen 
Vignos 
@WordCampSF 
2014 @kathleencodes
Kathleen 
Vignos 
API 
Problems: 
RSS 
Everywhere 
@WordCampSF 
2014 @kathleencodes
Selling 
Points 
• 
Precursor 
to 
full-­‐scale 
redesign 
• 
BeCer 
site 
performance 
• 
Faster 
future 
development 
! 
Project 
Scope 
• 
Migrate 
17 
acHve 
blogs 
only 
• 
NO 
DESIGN 
CHANGES 
• 
Homepage 
to 
PHP, 
schedule 
in 
WP 
• 
Manage 
edit 
workflow 
in 
WP 
Kathleen 
Vignos 
The 
Solu&on: 
Project 
Pangea 
@WordCampSF 
2014 @kathleencodes
1 2 3 4 5 
Kathleen 
Vignos 
WordPress 
Migra&on 
Steps 
@WordCampSF 
2014 @kathleencodes 
Purge 
Data 
Update 
Taxonomies 
Export, 
Import 
Sanity 
Checks 
Add 
Helpers
Kathleen 
Vignos 
Migra&on: 
Purge 
Data 
• 
Trash 
• 
Revisions 
• 
Comments, 
trackbacks, 
pingbacks 
• 
Links 
• 
Transients 
• 
Authors 
with 
no 
posts 
• 
Categories 
and 
tags 
with 
0, 
1, 
2 
posts 
@WordCampSF 
2014 @kathleencodes
Migra&on: 
Taxonomy 
Updates 
• 
Add 
blog 
category 
for 
each 
post 
• 
Convert 
categories 
to 
tags 
• 
ShiY 
remaining 
categories 
to 
subcategories 
• 
Use 
wp-­‐cli 
Kathleen 
Vignos 
http://wp-cli.org 
@WordCampSF 
2014 @kathleencodes
Migra&on: 
Export/Import 
with 
WordPress 
Kathleen 
Vignos 
@WordCampSF 
2014 @kathleencodes
Migra&on: 
Export/Import, 
Custom 
Scripts 
• 
Max 
import 
20MB 
(configurable) 
• 
Large 
export 
can 
trigger 
PHP 
memory 
limits 
Kathleen 
Vignos 
Why 
we 
needed 
custom 
scripts: 
! 
1. 
WP 
Export/Import 
Limits 
2. 
DuplicaHon 
of 
authors 
across 
blogs 
3. 
Mapping 
posts 
to 
new 
categories 
4. 
Storing 
old 
post 
ID 
in 
post 
meta 
@WordCampSF 
2014 @kathleencodes
Migra&on: 
Export/Import, 
Custom 
Scripts 
Our 
migraHon 
script 
process: 
! 
1. 
Nightly 
backup 
of 
producHon 
DB 
to 
S3 
2. 
gzip 
pulled 
down 
from 
S3 
to 
a 
local 
DB 
3. 
Scripts 
run 
against 
local 
DB 
4. 
DB 
saved 
back 
to 
S3 
5. 
Test, 
sanity 
checks 
Kathleen 
Vignos 
@WordCampSF 
2014 @kathleencodes
Kathleen 
Vignos 
Migra&on: 
Sanity 
Checks 
Can’t 
manually 
test 
100K+ 
posts, 
so… 
! 
• 
Script 
to 
check 
data 
mapping 
• 
Script 
to 
check 
data 
integrity 
@WordCampSF 
2014 @kathleencodes
Migra&on: 
Sanity 
Checks, 
Mapping 
Check 
data 
mapping 
from 
old 
site 
to 
new 
wp_gadgetlab_posts LEFT OUTER JOIN wp_posts 
Kathleen 
Vignos 
@WordCampSF 
2014 @kathleencodes 
✓ 
All 
old 
posts 
in 
new 
table 
✓ 
Post 
content 
matches 
✓ 
Post 
aCachments 
map 
to 
parent 
post 
✓ 
Post 
terms 
carried 
over 
hCp://wrd.cm/pangea-­‐data-­‐mapping-­‐gist
Migra&on: 
Sanity 
Checks, 
Integrity 
Check 
that 
data 
on 
new 
site 
makes 
sense 
Kathleen 
Vignos 
@WordCampSF 
2014 @kathleencodes 
✓No 
uncategorized 
(homeless) 
posts 
✓No 
phantom 
authors 
✓No 
duplicate 
posts 
✓No 
orphans: 
postmeta, 
aCachments, 
galleries 
hCp://wrd.cm/pangea-­‐data-­‐integrity-­‐gist
Migra&on: 
Helpers 
hCps://wordpress.org/plugins/restrict-­‐categories/ 
! 
• 
Set 
author 
default 
category 
(custom 
user 
meta) 
Kathleen 
Vignos 
• 
New 
custom 
roles 
and 
capabiliHes 
Ghost, 
Top 
Editor, 
Producer 
! 
• 
Restrict 
Categories 
plugin: 
@WordCampSF 
2014 @kathleencodes
Cross 
Posts 
and 
Redirects 
Kathleen 
Vignos 
The 
Results: 
Project 
Pangea 
@WordCampSF 
2014 @kathleencodes 
Flat 
Files Old 
CMS 
20 
Years 
of 
Digital 
Content 
External 
Homepage 
Curator 
App 
Third-­‐Party 
Editorial 
Workflow 
App 
1 
35+ 
WP 
Install 
Blogs
✓Easier plugin and widget management 
Kathleen 
Vignos 
The 
Results: 
Project 
Pangea 
@WordCampSF 
2014 @kathleencodes
Kathleen 
Vignos 
The 
Results: 
Project 
Pangea 
✓Easier user administration 
@WordCampSF 
2014 @kathleencodes
The 
Results: 
Project 
Pangea 
✓No more RSS needed for aggregating posts 
✓One single RESTful API 
Kathleen 
Vignos 
@WordCampSF 
2014 @kathleencodes
✓Automated deployments with Jenkins and git tags 
Kathleen 
Vignos 
The 
Results: 
Project 
Pangea 
@WordCampSF 
2014 @kathleencodes
The 
Results: 
Project 
Pangea 
of 
happiness 
and 
world 
peace 
Kathleen 
Vignos 
✓Achievement 
@WordCampSF 
2014 @kathleencodes
Kathleen 
Vignos 
Thank 
You! 
! 
Download 
slides: 
hCp://wrd.cm/wcsf2014-­‐kv 
is hiring! 
hCp://wrd.cm/jobs 
@WordCampSF 
2014 @kathleencodes

Contenu connexe

Tendances

R Markdown, Rpubs & github publishing and Shiny by Example
R Markdown, Rpubs & github publishing and Shiny by ExampleR Markdown, Rpubs & github publishing and Shiny by Example
R Markdown, Rpubs & github publishing and Shiny by ExampleVincent Claes
 
Version Control, Writers, and Workflows
Version Control, Writers, and WorkflowsVersion Control, Writers, and Workflows
Version Control, Writers, and Workflowsstc-siliconvalley
 
Atlassian User Group NYC April 27 2017 ScriptRunner Workshop
Atlassian User Group NYC April 27 2017 ScriptRunner WorkshopAtlassian User Group NYC April 27 2017 ScriptRunner Workshop
Atlassian User Group NYC April 27 2017 ScriptRunner WorkshopMarlon Palha
 
Getting Started with WordPress Plugin Development
Getting Started with WordPress Plugin DevelopmentGetting Started with WordPress Plugin Development
Getting Started with WordPress Plugin DevelopmentAbhishek Deshpande
 
The dev ops code has no servers
The dev ops code has no serversThe dev ops code has no servers
The dev ops code has no serversEd Anderson
 
Salesforce winter 16 release
Salesforce winter 16 releaseSalesforce winter 16 release
Salesforce winter 16 releaseJitendra Zaa
 
Convert your Full Trust Solutions to the SharePoint Framework (SPFx)
Convert your Full Trust Solutions to the SharePoint Framework (SPFx)Convert your Full Trust Solutions to the SharePoint Framework (SPFx)
Convert your Full Trust Solutions to the SharePoint Framework (SPFx)Brian Culver
 
Documentation-driven development for Python web APIs v2
Documentation-driven development for Python web APIs v2Documentation-driven development for Python web APIs v2
Documentation-driven development for Python web APIs v2José Haro Peralta
 
Mongo db parse-v17
Mongo db parse-v17Mongo db parse-v17
Mongo db parse-v17MongoDB
 
AUGNYC June 21 Presentations
AUGNYC June 21 PresentationsAUGNYC June 21 Presentations
AUGNYC June 21 PresentationsMarlon Palha
 
Salvatore Laisa - Da Angular a React - Un viaggio inaspettato
Salvatore Laisa - Da Angular a React - Un viaggio inaspettatoSalvatore Laisa - Da Angular a React - Un viaggio inaspettato
Salvatore Laisa - Da Angular a React - Un viaggio inaspettatoCodemotion
 
Delivering successful API integrations with documentation-driven development
Delivering successful API integrations with documentation-driven developmentDelivering successful API integrations with documentation-driven development
Delivering successful API integrations with documentation-driven developmentJosé Haro Peralta
 
Tipping the scale - Eyal Eizenberg - Wix
Tipping the scale - Eyal Eizenberg - WixTipping the scale - Eyal Eizenberg - Wix
Tipping the scale - Eyal Eizenberg - WixEyal Eizenberg
 
How to use Salesforce Workbench like a Pro
How to use Salesforce Workbench like a ProHow to use Salesforce Workbench like a Pro
How to use Salesforce Workbench like a ProAtul Gupta(8X)
 
Automated Testing – Web, Mobile, Desktop - Challenges and Successes
Automated Testing – Web, Mobile, Desktop - Challenges and SuccessesAutomated Testing – Web, Mobile, Desktop - Challenges and Successes
Automated Testing – Web, Mobile, Desktop - Challenges and SuccessesTed Drake
 
Moving Beyond WordPress At Tech in Asia
Moving Beyond WordPress At Tech in AsiaMoving Beyond WordPress At Tech in Asia
Moving Beyond WordPress At Tech in AsiaLester Chan
 
Stencil the time for vanilla web components has arrived
Stencil the time for vanilla web components has arrivedStencil the time for vanilla web components has arrived
Stencil the time for vanilla web components has arrivedGil Fink
 
Documentation-driven development for Python web APIs
Documentation-driven development for Python web APIsDocumentation-driven development for Python web APIs
Documentation-driven development for Python web APIsJosé Haro Peralta
 

Tendances (20)

R Markdown, Rpubs & github publishing and Shiny by Example
R Markdown, Rpubs & github publishing and Shiny by ExampleR Markdown, Rpubs & github publishing and Shiny by Example
R Markdown, Rpubs & github publishing and Shiny by Example
 
Version Control, Writers, and Workflows
Version Control, Writers, and WorkflowsVersion Control, Writers, and Workflows
Version Control, Writers, and Workflows
 
Atlassian User Group NYC April 27 2017 ScriptRunner Workshop
Atlassian User Group NYC April 27 2017 ScriptRunner WorkshopAtlassian User Group NYC April 27 2017 ScriptRunner Workshop
Atlassian User Group NYC April 27 2017 ScriptRunner Workshop
 
Getting Started with WordPress Plugin Development
Getting Started with WordPress Plugin DevelopmentGetting Started with WordPress Plugin Development
Getting Started with WordPress Plugin Development
 
The dev ops code has no servers
The dev ops code has no serversThe dev ops code has no servers
The dev ops code has no servers
 
Salesforce winter 16 release
Salesforce winter 16 releaseSalesforce winter 16 release
Salesforce winter 16 release
 
Convert your Full Trust Solutions to the SharePoint Framework (SPFx)
Convert your Full Trust Solutions to the SharePoint Framework (SPFx)Convert your Full Trust Solutions to the SharePoint Framework (SPFx)
Convert your Full Trust Solutions to the SharePoint Framework (SPFx)
 
Documentation-driven development for Python web APIs v2
Documentation-driven development for Python web APIs v2Documentation-driven development for Python web APIs v2
Documentation-driven development for Python web APIs v2
 
Mongo db parse-v17
Mongo db parse-v17Mongo db parse-v17
Mongo db parse-v17
 
AUGNYC June 21 Presentations
AUGNYC June 21 PresentationsAUGNYC June 21 Presentations
AUGNYC June 21 Presentations
 
Salvatore Laisa - Da Angular a React - Un viaggio inaspettato
Salvatore Laisa - Da Angular a React - Un viaggio inaspettatoSalvatore Laisa - Da Angular a React - Un viaggio inaspettato
Salvatore Laisa - Da Angular a React - Un viaggio inaspettato
 
Delivering successful API integrations with documentation-driven development
Delivering successful API integrations with documentation-driven developmentDelivering successful API integrations with documentation-driven development
Delivering successful API integrations with documentation-driven development
 
PyBCN 2020
PyBCN 2020PyBCN 2020
PyBCN 2020
 
Tipping the scale - Eyal Eizenberg - Wix
Tipping the scale - Eyal Eizenberg - WixTipping the scale - Eyal Eizenberg - Wix
Tipping the scale - Eyal Eizenberg - Wix
 
Is TDD dead or alive?
Is TDD dead or alive?Is TDD dead or alive?
Is TDD dead or alive?
 
How to use Salesforce Workbench like a Pro
How to use Salesforce Workbench like a ProHow to use Salesforce Workbench like a Pro
How to use Salesforce Workbench like a Pro
 
Automated Testing – Web, Mobile, Desktop - Challenges and Successes
Automated Testing – Web, Mobile, Desktop - Challenges and SuccessesAutomated Testing – Web, Mobile, Desktop - Challenges and Successes
Automated Testing – Web, Mobile, Desktop - Challenges and Successes
 
Moving Beyond WordPress At Tech in Asia
Moving Beyond WordPress At Tech in AsiaMoving Beyond WordPress At Tech in Asia
Moving Beyond WordPress At Tech in Asia
 
Stencil the time for vanilla web components has arrived
Stencil the time for vanilla web components has arrivedStencil the time for vanilla web components has arrived
Stencil the time for vanilla web components has arrived
 
Documentation-driven development for Python web APIs
Documentation-driven development for Python web APIsDocumentation-driven development for Python web APIs
Documentation-driven development for Python web APIs
 

Similaire à WordCamp SF 2014 - WIRED Migration Project

Building the next generation of themes with WP Rig 2.0
Building the next generation of themes with WP Rig 2.0Building the next generation of themes with WP Rig 2.0
Building the next generation of themes with WP Rig 2.0Morten Rand-Hendriksen
 
Implementing Google Analytics in WordPress
Implementing Google Analytics in WordPressImplementing Google Analytics in WordPress
Implementing Google Analytics in WordPressJulie Kosbab
 
Things you should know about WordPress (but were always too afraid to ask): W...
Things you should know about WordPress (but were always too afraid to ask): W...Things you should know about WordPress (but were always too afraid to ask): W...
Things you should know about WordPress (but were always too afraid to ask): W...Michael McNeill
 
Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal
Best Practices and Tips on Migrating a Legacy-Based CMS to DrupalBest Practices and Tips on Migrating a Legacy-Based CMS to Drupal
Best Practices and Tips on Migrating a Legacy-Based CMS to DrupalMediacurrent
 
Gutenberg and Headless WordPress.pdf
Gutenberg and Headless WordPress.pdfGutenberg and Headless WordPress.pdf
Gutenberg and Headless WordPress.pdfWP Engine
 
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to DevelopmentWordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to DevelopmentEvan Mullins
 
Word camp 2013 migration
Word camp 2013 migrationWord camp 2013 migration
Word camp 2013 migrationMatt Siltala
 
Wordpress beyond blogging
Wordpress beyond bloggingWordpress beyond blogging
Wordpress beyond bloggingJulien Minguely
 
Migration Best Practices - Search Y 2019, Paris
Migration Best Practices - Search Y 2019, ParisMigration Best Practices - Search Y 2019, Paris
Migration Best Practices - Search Y 2019, ParisBastian Grimm
 
Get Involved with WordPress
Get Involved with WordPressGet Involved with WordPress
Get Involved with WordPressMario Peshev
 
The WordPress University
The WordPress UniversityThe WordPress University
The WordPress UniversityStephanie Leary
 
Developing Complex WordPress Sites without Fear of Failure (with MVC)
Developing Complex WordPress Sites without Fear of Failure (with MVC)Developing Complex WordPress Sites without Fear of Failure (with MVC)
Developing Complex WordPress Sites without Fear of Failure (with MVC)Mike Schinkel
 
WordPress Beginners Workshop
WordPress Beginners WorkshopWordPress Beginners Workshop
WordPress Beginners WorkshopThe Toolbox, Inc.
 
Plugin development demystified 2017
Plugin development demystified 2017Plugin development demystified 2017
Plugin development demystified 2017ylefebvre
 
Custom Post Types in Depth at WordCamp Montreal
Custom Post Types in Depth at WordCamp MontrealCustom Post Types in Depth at WordCamp Montreal
Custom Post Types in Depth at WordCamp MontrealJoey Kudish
 
Plesk WP Toolkit - Growing Together @Cloudfest 2022
Plesk WP Toolkit - Growing Together @Cloudfest 2022Plesk WP Toolkit - Growing Together @Cloudfest 2022
Plesk WP Toolkit - Growing Together @Cloudfest 2022Plesk
 
Csun retrofitting anoosha&sathish-2
Csun retrofitting anoosha&sathish-2Csun retrofitting anoosha&sathish-2
Csun retrofitting anoosha&sathish-2Sathish Kumar
 
Upgrading to Drupal 8: Benefits and Gotchas
Upgrading to Drupal 8: Benefits and GotchasUpgrading to Drupal 8: Benefits and Gotchas
Upgrading to Drupal 8: Benefits and GotchasSuzanne Dergacheva
 

Similaire à WordCamp SF 2014 - WIRED Migration Project (20)

Building the next generation of themes with WP Rig 2.0
Building the next generation of themes with WP Rig 2.0Building the next generation of themes with WP Rig 2.0
Building the next generation of themes with WP Rig 2.0
 
Implementing Google Analytics in WordPress
Implementing Google Analytics in WordPressImplementing Google Analytics in WordPress
Implementing Google Analytics in WordPress
 
Things you should know about WordPress (but were always too afraid to ask): W...
Things you should know about WordPress (but were always too afraid to ask): W...Things you should know about WordPress (but were always too afraid to ask): W...
Things you should know about WordPress (but were always too afraid to ask): W...
 
Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal
Best Practices and Tips on Migrating a Legacy-Based CMS to DrupalBest Practices and Tips on Migrating a Legacy-Based CMS to Drupal
Best Practices and Tips on Migrating a Legacy-Based CMS to Drupal
 
Gutenberg and Headless WordPress.pdf
Gutenberg and Headless WordPress.pdfGutenberg and Headless WordPress.pdf
Gutenberg and Headless WordPress.pdf
 
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to DevelopmentWordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
WordCamp Greenville 2018 - Beware the Dark Side, or an Intro to Development
 
Managed WordPress Demystified
Managed WordPress DemystifiedManaged WordPress Demystified
Managed WordPress Demystified
 
Word camp 2013 migration
Word camp 2013 migrationWord camp 2013 migration
Word camp 2013 migration
 
Wordpress beyond blogging
Wordpress beyond bloggingWordpress beyond blogging
Wordpress beyond blogging
 
Migration Best Practices - Search Y 2019, Paris
Migration Best Practices - Search Y 2019, ParisMigration Best Practices - Search Y 2019, Paris
Migration Best Practices - Search Y 2019, Paris
 
Get Involved with WordPress
Get Involved with WordPressGet Involved with WordPress
Get Involved with WordPress
 
The WordPress University
The WordPress UniversityThe WordPress University
The WordPress University
 
Developing Complex WordPress Sites without Fear of Failure (with MVC)
Developing Complex WordPress Sites without Fear of Failure (with MVC)Developing Complex WordPress Sites without Fear of Failure (with MVC)
Developing Complex WordPress Sites without Fear of Failure (with MVC)
 
WordPress Beginners Workshop
WordPress Beginners WorkshopWordPress Beginners Workshop
WordPress Beginners Workshop
 
Plugin development demystified 2017
Plugin development demystified 2017Plugin development demystified 2017
Plugin development demystified 2017
 
Custom Post Types in Depth at WordCamp Montreal
Custom Post Types in Depth at WordCamp MontrealCustom Post Types in Depth at WordCamp Montreal
Custom Post Types in Depth at WordCamp Montreal
 
WordPress Complete Tutorial
WordPress Complete TutorialWordPress Complete Tutorial
WordPress Complete Tutorial
 
Plesk WP Toolkit - Growing Together @Cloudfest 2022
Plesk WP Toolkit - Growing Together @Cloudfest 2022Plesk WP Toolkit - Growing Together @Cloudfest 2022
Plesk WP Toolkit - Growing Together @Cloudfest 2022
 
Csun retrofitting anoosha&sathish-2
Csun retrofitting anoosha&sathish-2Csun retrofitting anoosha&sathish-2
Csun retrofitting anoosha&sathish-2
 
Upgrading to Drupal 8: Benefits and Gotchas
Upgrading to Drupal 8: Benefits and GotchasUpgrading to Drupal 8: Benefits and Gotchas
Upgrading to Drupal 8: Benefits and Gotchas
 

Plus de kvignos

LeadingEng Growing the Next Generation of Leaders, Kathleen Vignos.pdf
LeadingEng Growing the Next Generation of Leaders, Kathleen Vignos.pdfLeadingEng Growing the Next Generation of Leaders, Kathleen Vignos.pdf
LeadingEng Growing the Next Generation of Leaders, Kathleen Vignos.pdfkvignos
 
Keeping up your technical skills as a manager
Keeping up your technical skills as a managerKeeping up your technical skills as a manager
Keeping up your technical skills as a managerkvignos
 
How to keep up your technical skills without annoying your team(s)
How to keep up your technical skills without annoying your team(s)How to keep up your technical skills without annoying your team(s)
How to keep up your technical skills without annoying your team(s)kvignos
 
5 leadership skills every engineer needs - North Bay Python
5 leadership skills every engineer needs - North Bay Python5 leadership skills every engineer needs - North Bay Python
5 leadership skills every engineer needs - North Bay Pythonkvignos
 
Managing engineering teams through constant change final
Managing engineering teams through constant change finalManaging engineering teams through constant change final
Managing engineering teams through constant change finalkvignos
 
WIRED and the WP REST API
WIRED and the WP REST APIWIRED and the WP REST API
WIRED and the WP REST APIkvignos
 

Plus de kvignos (6)

LeadingEng Growing the Next Generation of Leaders, Kathleen Vignos.pdf
LeadingEng Growing the Next Generation of Leaders, Kathleen Vignos.pdfLeadingEng Growing the Next Generation of Leaders, Kathleen Vignos.pdf
LeadingEng Growing the Next Generation of Leaders, Kathleen Vignos.pdf
 
Keeping up your technical skills as a manager
Keeping up your technical skills as a managerKeeping up your technical skills as a manager
Keeping up your technical skills as a manager
 
How to keep up your technical skills without annoying your team(s)
How to keep up your technical skills without annoying your team(s)How to keep up your technical skills without annoying your team(s)
How to keep up your technical skills without annoying your team(s)
 
5 leadership skills every engineer needs - North Bay Python
5 leadership skills every engineer needs - North Bay Python5 leadership skills every engineer needs - North Bay Python
5 leadership skills every engineer needs - North Bay Python
 
Managing engineering teams through constant change final
Managing engineering teams through constant change finalManaging engineering teams through constant change final
Managing engineering teams through constant change final
 
WIRED and the WP REST API
WIRED and the WP REST APIWIRED and the WP REST API
WIRED and the WP REST API
 

Dernier

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusZilliz
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelDeepika Singh
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsNanddeep Nachan
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontologyjohnbeverley2021
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdfSandro Moreira
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 

Dernier (20)

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 

WordCamp SF 2014 - WIRED Migration Project

  • 1. Migra&ng 17 WP blogs on WIRED.com into one WordPress Install Kathleen Vignos @WordCampSF 2014
  • 2. Issue Kathleen Vignos WIRED: Magazine since 1993 @WordCampSF 2014 @kathleencodes
  • 3. Kathleen Vignos WIRED: Website since 1994 @WordCampSF 2014 @kathleencodes
  • 4. Cross Posts and Redirects Kathleen Vignos We Got 99 Problems... @WordCampSF 2014 @kathleencodes Flat Files Old CMS 20 Years of Digital Content External Homepage Curator App Third-­‐Party Editorial Workflow App 35+ Blogs
  • 5. WordPress Problems: Separate Installs, Themes, Plugins Kathleen Vignos @WordCampSF 2014 @kathleencodes
  • 6. WordPress Problems: Upgrades and Deployments Kathleen Vignos @WordCampSF 2014 @kathleencodes
  • 7. WordPress Problems: 35x2 Separate Logins Kathleen Vignos @WordCampSF 2014 @kathleencodes
  • 8. WordPress Problems: Create User 35x2 Times Kathleen Vignos @WordCampSF 2014 @kathleencodes
  • 9. Kathleen Vignos @WordCampSF 2014 @kathleencodes
  • 10. Kathleen Vignos API Problems: RSS Everywhere @WordCampSF 2014 @kathleencodes
  • 11. Selling Points • Precursor to full-­‐scale redesign • BeCer site performance • Faster future development ! Project Scope • Migrate 17 acHve blogs only • NO DESIGN CHANGES • Homepage to PHP, schedule in WP • Manage edit workflow in WP Kathleen Vignos The Solu&on: Project Pangea @WordCampSF 2014 @kathleencodes
  • 12. 1 2 3 4 5 Kathleen Vignos WordPress Migra&on Steps @WordCampSF 2014 @kathleencodes Purge Data Update Taxonomies Export, Import Sanity Checks Add Helpers
  • 13. Kathleen Vignos Migra&on: Purge Data • Trash • Revisions • Comments, trackbacks, pingbacks • Links • Transients • Authors with no posts • Categories and tags with 0, 1, 2 posts @WordCampSF 2014 @kathleencodes
  • 14. Migra&on: Taxonomy Updates • Add blog category for each post • Convert categories to tags • ShiY remaining categories to subcategories • Use wp-­‐cli Kathleen Vignos http://wp-cli.org @WordCampSF 2014 @kathleencodes
  • 15. Migra&on: Export/Import with WordPress Kathleen Vignos @WordCampSF 2014 @kathleencodes
  • 16. Migra&on: Export/Import, Custom Scripts • Max import 20MB (configurable) • Large export can trigger PHP memory limits Kathleen Vignos Why we needed custom scripts: ! 1. WP Export/Import Limits 2. DuplicaHon of authors across blogs 3. Mapping posts to new categories 4. Storing old post ID in post meta @WordCampSF 2014 @kathleencodes
  • 17. Migra&on: Export/Import, Custom Scripts Our migraHon script process: ! 1. Nightly backup of producHon DB to S3 2. gzip pulled down from S3 to a local DB 3. Scripts run against local DB 4. DB saved back to S3 5. Test, sanity checks Kathleen Vignos @WordCampSF 2014 @kathleencodes
  • 18. Kathleen Vignos Migra&on: Sanity Checks Can’t manually test 100K+ posts, so… ! • Script to check data mapping • Script to check data integrity @WordCampSF 2014 @kathleencodes
  • 19. Migra&on: Sanity Checks, Mapping Check data mapping from old site to new wp_gadgetlab_posts LEFT OUTER JOIN wp_posts Kathleen Vignos @WordCampSF 2014 @kathleencodes ✓ All old posts in new table ✓ Post content matches ✓ Post aCachments map to parent post ✓ Post terms carried over hCp://wrd.cm/pangea-­‐data-­‐mapping-­‐gist
  • 20. Migra&on: Sanity Checks, Integrity Check that data on new site makes sense Kathleen Vignos @WordCampSF 2014 @kathleencodes ✓No uncategorized (homeless) posts ✓No phantom authors ✓No duplicate posts ✓No orphans: postmeta, aCachments, galleries hCp://wrd.cm/pangea-­‐data-­‐integrity-­‐gist
  • 21. Migra&on: Helpers hCps://wordpress.org/plugins/restrict-­‐categories/ ! • Set author default category (custom user meta) Kathleen Vignos • New custom roles and capabiliHes Ghost, Top Editor, Producer ! • Restrict Categories plugin: @WordCampSF 2014 @kathleencodes
  • 22. Cross Posts and Redirects Kathleen Vignos The Results: Project Pangea @WordCampSF 2014 @kathleencodes Flat Files Old CMS 20 Years of Digital Content External Homepage Curator App Third-­‐Party Editorial Workflow App 1 35+ WP Install Blogs
  • 23. ✓Easier plugin and widget management Kathleen Vignos The Results: Project Pangea @WordCampSF 2014 @kathleencodes
  • 24. Kathleen Vignos The Results: Project Pangea ✓Easier user administration @WordCampSF 2014 @kathleencodes
  • 25. The Results: Project Pangea ✓No more RSS needed for aggregating posts ✓One single RESTful API Kathleen Vignos @WordCampSF 2014 @kathleencodes
  • 26. ✓Automated deployments with Jenkins and git tags Kathleen Vignos The Results: Project Pangea @WordCampSF 2014 @kathleencodes
  • 27. The Results: Project Pangea of happiness and world peace Kathleen Vignos ✓Achievement @WordCampSF 2014 @kathleencodes
  • 28. Kathleen Vignos Thank You! ! Download slides: hCp://wrd.cm/wcsf2014-­‐kv is hiring! hCp://wrd.cm/jobs @WordCampSF 2014 @kathleencodes