SlideShare uma empresa Scribd logo
1 de 28
Baixar para ler offline
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

Mais conteúdo relacionado

Mais procurados

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
 

Mais procurados (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
 

Semelhante a 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
 

Semelhante a 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
 

Mais 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
 

Mais 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
 

Último

Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
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
 

Último (20)

Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
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
 

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