SlideShare a Scribd company logo
Some rights reserved
Multiple Site Management
Engine Summit June 7, 2011
Environments for Humans
with ExpressionEngine
Multiple Site Management Engine Summit 2
Web Designer Writer Instructor
http://emilylewisdesign.com
Author, Microformats Made Simple
http://microformatsmadesimple.com
Contributing author, HTML5 Cookbook
http://oreilly.com/catalog/0636920016038
Email: emily@emilylewisdesign.com
Blog: http://ablognotlimited.com
Twitter: @emilylewis
Multiple Site Management Engine Summit
Today, you’ll learn
3
• What Multiple Site Manager is
• Benefits of MSM
• Use cases for MSM
• How to install MSM and create new sites
& challenges with
^
Multiple Site Management Engine Summit
Multiple Site Manager
• Allows you to create and maintain multiple sites
from a single EE install
• Expansion from EllisLab introduced in v1.6 and
available for v2+
• Available with non-commercial ($79.95) and
commercial ($199.95) EE licenses
4
Multiple Site Management Engine Summit
The Rules
• The EE/MSM license holder has to own all sites
• All sites have to reside on the same server
• Sub-domain/domain directories have to be able to
access the main EE install directory
5
Multiple Site Management Engine Summit
The Benefits
• Content, templates and members can be shared
across all sites
• Each site has its own system preferences and
specialty templates
• Fast and easy site duplication, with options for
selective duplication
• Extensions, modules and plug-ins can be shared
across sites, with site-specific settings*
• Money-saving
6
Multiple Site Management Engine Summit
The Problems
• Installation-wide updates affect all sites.
• If something goes wrong with an installation-wide
asset, it can affect all the sites.
• Be aware of extensions
• Test carefully for scalability
• Make sure you check licensing
• Does it have site-specific settings or only global?
• No automated way of exporting a site out of MSM
7
challenges
Multiple Site Management Engine Summit
The Details
8
• Members
• Member groups
• Add-ons
• Find and replace
Installation-wide resources Site-specific resources
• Member group preferences
• Specialty templates
• Themes
• Member profile templates
Multiple Site Management Engine Summit
Do you ...
• Want a centralized install for multiple sites?
• Want a single control panel as a Super Admin, but
still limit site access to other member groups?
• Need to establish consistency in branding with
shared templates for different sites?
• Want to share content across sites and reduce
redundancy?
• Want to have independent forums, but with a
shared member base?
9
Multiple Site Management Engine Summit
Global offices
10
in thewild
Multiple Site Management Engine Summit
Academic schools
11
in thewild
EE Podcast Episode #34:
MSM Sites with John Rogerson
http://5by5.tv/eepodcast/34
Multiple Site Management Engine Summit
Personal sites
12
in thewild
+
Multiple Site Management Engine Summit
Getting Started
13
woohoo!
Multiple Site Management Engine Summit
Installation
1. Purchase
2. Download
14
Multiple Site Management Engine Summit
Installation
3. Extract .zip*
15
• EE_MSM_2.1.0/system/expressionengine
• /controllers/
• /language/
• /libraries/
Multiple Site Management Engine Summit
Installation
4. Upload files to /system/expressionengine/ directory
16
/controllers/cp/sites.php
/language/english/sites_lang.php
/libraries/Sites.php
/controllers/cp/sites.php
/language/english/sites_lang.php
/libraries/Sites.php
Local Web server
Multiple Site Management Engine Summit
Backup database!
17
Multiple Site Management Engine Summit
Setting up MSM
1. Log in to control panel
2. Admin > General Configuration
3. Select “Yes” for enabling MSM
4. Submit
18
Multiple Site Management Engine Summit
Creating a new site
• New “Sites” button
19
Multiple Site Management Engine Summit
Create a new site
1. Select “Sites” button
2. Choose “Edit Sites”
3. Select “Create New Site”
20
Multiple Site Management Engine Summit
Create a new site
• Site label = name of site in control panel
• Site short name = value used in code references
• Site description = optional description of site
21
Multiple Site Management Engine Summit
Create a new site
• You only get the chance to import during the
creation process not during editing
• Import = moves the data from your original site to
the new site
• Duplicate = copies the data and/or preferences
from your original site to your new site
22
Multiple Site Management Engine Summit
Did you backup
your database?
23
Multiple Site Management Engine Summit
Create a new site
1. Select the appropriate import/duplicate options
• Channel
• File upload preferences
• Template groups
• Global variables
2. Submit
24
Multiple Site Management Engine Summit
You are here
• Breadcrumbs
• Sites button
25
Multiple Site Management Engine Summit
Configure site
1. Admin > General configuration
2. Enter URL for site root
3. Submit
26
Multiple Site Management Engine Summit
Configure site
1. Design > Templates >
Template Manager
2. Choose/create
template group that
contains home page
3. Select “Edit Group”
4. Select checkbox for
site home page
5. Update
27
Multiple Site Management Engine Summit
Set up public access
• Can use domain, sub-
domain or sub-folder
1. Create directory under
/public_html/ for new site
28
Multiple Site Management Engine Summit
Set up public access
2. Copy index.php from
original site root not from
system directory
3. Save to new directory just
created for new site
29
Multiple Site Management Engine Summit
Set up public access
4. Edit index.php
• $system_path = path from new site directory to
EE system directory
30
Multiple Site Management Engine Summit
Set up public access
4. Edit index.php
• $assign_to_config[‘site_name’] = Site short name
• $assign_to_config[‘cp_url’] = Site control panel
• $assign_to_config[‘site_url’] = Site URL
31
Multiple Site Management Engine Summit
Save templates as files
1. Are you in the right site?
2. Design > Templates > Template
Manager
3. Select “Global Template
Preferences”
32
Multiple Site Management Engine Summit
Save templates as files
4. Select “Yes” for allowing templates to be saved as files
5. Enter path to new site directory, where templates
should be saved
6. Update
33
Multiple Site Management Engine Summit
Global variables
• MSM comes with 3 global variables:
• {site_id} = the site’s ID number
• {site_label} = name of site in control panel
• {site_short_name} = value used in code references
34
Multiple Site Management Engine Summit
Sharing content
• To pull content from one site
into another, use the site variable
with the site short name as the
value
• site is available on all Channel
and Comment tags, as well as
RSS
35
{exp:channel:entries site="default_site" ...}
Multiple Site Management Engine Summit
Sharing content
• You can also specify several sites with the site variable
• Each site short name is listed, delimited with a pipe (|)
• You can also exclude a site using not
36
{exp:channel:entries site="default_site|blog" ...}
{exp:channel:entries site="not blog" ...}
Multiple Site Management Engine Summit
Sharing content
• You can also use site short name with the orderby
parameter
• Add the site short name as a prefix to the field you want
to order on
37
orderby="blog:title|default_site:description"
Multiple Site Management Engine Summit
Sharing templates
• You can embed a template from one site in a template
from another by prefixing the template group/
template with the site short name
38
{embed="default_site:global/nav"}
Multiple Site Management Engine Summit
Resources
• EE Documentation
http://expressionengine.com/user_guide/cp/sites/index.html
• Building a Sub-Folder Site in ExpressionEngine MSM
http://www.designlitm.us/articles/building_a_sub-
folder_site_in_expressionengine_msm/
• Splitting a Site out of an ExpressionEngine Multiple
Site Manager Installation*
http://www.train-ee.com/courseware/free-tutorials/comments/splitting-a-
site-out-of-an-ee-msm-installation/
39
Multiple Site Management Engine Summit
Questions?
40
emily@emilylewisdesign.com @emilylewis
Multiple Site Management Engine Summit
Thank you!
41

More Related Content

PDF
WordPress Multisite
PDF
Automate Variations in SharePoint 2013
PDF
Alfresco_Web_Quick_Start_User_Help_Enterprise.pdf
PPTX
Ultimate Guide to WordPress Multisite
PDF
WordPress 3.4 feature tour
PDF
Aem offline content
PPTX
Gabriel Gayhart - XML Pointer File Example
PDF
WordCamp 2015
WordPress Multisite
Automate Variations in SharePoint 2013
Alfresco_Web_Quick_Start_User_Help_Enterprise.pdf
Ultimate Guide to WordPress Multisite
WordPress 3.4 feature tour
Aem offline content
Gabriel Gayhart - XML Pointer File Example
WordCamp 2015

What's hot (18)

PPTX
Using MAMP for Web Development
PDF
2012.10 Oldfield
PDF
2012.10 Liferay Europe Symposium, Alistair Oldfield
KEY
Exploring WordPress Multisite
PPT
WordPress Multisite
PPTX
Monitoring and Maintaining SharePoint 2013 Server
PDF
Envision IT - Application Lifecycle Management for SharePoint in the Enterprise
PPTX
Upgrading to SharePoint 2013 - SharePoint Saturday UK 2013
PPTX
Zeroboard traning
PPTX
1 app 2 developers 3 servers
PPTX
SharePoint 2010 Development for ASP.NET Developers - Tyson Devcon 2010
PPT
PPTX
Installation 02 (wp)
PPTX
Better, Faster, Stronger! Boost Your Team-Based SharePoint Development Using ...
PDF
Word press 3.1 feature tour
PDF
Wp8.5 p06 themes basics
ZIP
Building a Drupal Distribution using Features, Drush Make, Installation Profi...
Using MAMP for Web Development
2012.10 Oldfield
2012.10 Liferay Europe Symposium, Alistair Oldfield
Exploring WordPress Multisite
WordPress Multisite
Monitoring and Maintaining SharePoint 2013 Server
Envision IT - Application Lifecycle Management for SharePoint in the Enterprise
Upgrading to SharePoint 2013 - SharePoint Saturday UK 2013
Zeroboard traning
1 app 2 developers 3 servers
SharePoint 2010 Development for ASP.NET Developers - Tyson Devcon 2010
Installation 02 (wp)
Better, Faster, Stronger! Boost Your Team-Based SharePoint Development Using ...
Word press 3.1 feature tour
Wp8.5 p06 themes basics
Building a Drupal Distribution using Features, Drush Make, Installation Profi...
Ad

Viewers also liked (8)

PDF
R&D GCP and Effective Site Management 011910
PDF
Contaminated Site Management
PPTX
construction site safety and management
PPT
Content Management System
PPT
Materials Management
PPT
Risk mangement
PDF
Sample project-synopsis
PPTX
Slideshare ppt
R&D GCP and Effective Site Management 011910
Contaminated Site Management
construction site safety and management
Content Management System
Materials Management
Risk mangement
Sample project-synopsis
Slideshare ppt
Ad

Similar to Multiple Site Management with ExpressionEngine (20)

PDF
One Neos CMS - many websites
PPTX
Taking Advantage of Microsoft PowerShell
PPTX
WordPress vs Joomla Showdown
PDF
Making Multisite Work for You
DOC
SharePoint - ACME Project
PDF
Content Management Systems (CMS) & Wordpress theme development
PPTX
Cross Site Collection Navigation
PDF
Modern_Site_Owner_M365_Ottawa.pdf
PDF
Wordpress intro
PPTX
Cross Site Collection Navigation with SPFX, PowerShell PnP, PnP-JS, Office UI
PPTX
Cross Site Collection Navigation using SPFx, Powershell PnP & PnP-JS
PDF
Cms & wordpress theme development 2011
PDF
Absolute Beginners Guide to Drupal
PPTX
One Drupal to rule them all - Drupalcamp London
PPTX
A Beginner's Guide to Popular CMSs
PDF
High-level Guide: Upgrading to SharePoint 2013
PPTX
Magento CMS Presentation
PPTX
Multisite: Lessons I Learned the Hard Way
PPTX
The WordPress University
PPT
Emkane RCC wp qs
One Neos CMS - many websites
Taking Advantage of Microsoft PowerShell
WordPress vs Joomla Showdown
Making Multisite Work for You
SharePoint - ACME Project
Content Management Systems (CMS) & Wordpress theme development
Cross Site Collection Navigation
Modern_Site_Owner_M365_Ottawa.pdf
Wordpress intro
Cross Site Collection Navigation with SPFX, PowerShell PnP, PnP-JS, Office UI
Cross Site Collection Navigation using SPFx, Powershell PnP & PnP-JS
Cms & wordpress theme development 2011
Absolute Beginners Guide to Drupal
One Drupal to rule them all - Drupalcamp London
A Beginner's Guide to Popular CMSs
High-level Guide: Upgrading to SharePoint 2013
Magento CMS Presentation
Multisite: Lessons I Learned the Hard Way
The WordPress University
Emkane RCC wp qs

More from Emily Lewis (15)

PDF
Create Your Own Starter Files
PDF
The Hiring Process
PDF
Take Your Markup to Eleven
PDF
Designer-Friendly EE
PDF
10 Advanced CSS Techniques (You Wish You Knew More About)
PDF
Building the Webuquerque Community
PDF
Take Your Markup to 11
KEY
WordPress & Other Content Management Systems
PDF
Microformats or: How I Learned to Write POSH and Love the Semantic Web
PDF
jQuery, A Designer's Perspective
KEY
Practical Microformats - Voices That Matter
KEY
[Workshop Summits] Microformats Workshop
KEY
Microformats: Web Semantics & More
KEY
Podcasting & Vodcasting 101
PPT
Webuquerque: Social Media Means Business
Create Your Own Starter Files
The Hiring Process
Take Your Markup to Eleven
Designer-Friendly EE
10 Advanced CSS Techniques (You Wish You Knew More About)
Building the Webuquerque Community
Take Your Markup to 11
WordPress & Other Content Management Systems
Microformats or: How I Learned to Write POSH and Love the Semantic Web
jQuery, A Designer's Perspective
Practical Microformats - Voices That Matter
[Workshop Summits] Microformats Workshop
Microformats: Web Semantics & More
Podcasting & Vodcasting 101
Webuquerque: Social Media Means Business

Recently uploaded (20)

PPTX
sap open course for s4hana steps from ECC to s4
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PPT
Teaching material agriculture food technology
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Empathic Computing: Creating Shared Understanding
PPTX
Machine Learning_overview_presentation.pptx
PDF
cuic standard and advanced reporting.pdf
PPTX
A Presentation on Artificial Intelligence
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Review of recent advances in non-invasive hemoglobin estimation
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Machine learning based COVID-19 study performance prediction
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PPTX
Cloud computing and distributed systems.
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
sap open course for s4hana steps from ECC to s4
MIND Revenue Release Quarter 2 2025 Press Release
Reach Out and Touch Someone: Haptics and Empathic Computing
Teaching material agriculture food technology
Spectral efficient network and resource selection model in 5G networks
Empathic Computing: Creating Shared Understanding
Machine Learning_overview_presentation.pptx
cuic standard and advanced reporting.pdf
A Presentation on Artificial Intelligence
Digital-Transformation-Roadmap-for-Companies.pptx
Review of recent advances in non-invasive hemoglobin estimation
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
The Rise and Fall of 3GPP – Time for a Sabbatical?
Machine learning based COVID-19 study performance prediction
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Dropbox Q2 2025 Financial Results & Investor Presentation
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Cloud computing and distributed systems.
Advanced methodologies resolving dimensionality complications for autism neur...

Multiple Site Management with ExpressionEngine

  • 1. Some rights reserved Multiple Site Management Engine Summit June 7, 2011 Environments for Humans with ExpressionEngine
  • 2. Multiple Site Management Engine Summit 2 Web Designer Writer Instructor http://emilylewisdesign.com Author, Microformats Made Simple http://microformatsmadesimple.com Contributing author, HTML5 Cookbook http://oreilly.com/catalog/0636920016038 Email: emily@emilylewisdesign.com Blog: http://ablognotlimited.com Twitter: @emilylewis
  • 3. Multiple Site Management Engine Summit Today, you’ll learn 3 • What Multiple Site Manager is • Benefits of MSM • Use cases for MSM • How to install MSM and create new sites & challenges with ^
  • 4. Multiple Site Management Engine Summit Multiple Site Manager • Allows you to create and maintain multiple sites from a single EE install • Expansion from EllisLab introduced in v1.6 and available for v2+ • Available with non-commercial ($79.95) and commercial ($199.95) EE licenses 4
  • 5. Multiple Site Management Engine Summit The Rules • The EE/MSM license holder has to own all sites • All sites have to reside on the same server • Sub-domain/domain directories have to be able to access the main EE install directory 5
  • 6. Multiple Site Management Engine Summit The Benefits • Content, templates and members can be shared across all sites • Each site has its own system preferences and specialty templates • Fast and easy site duplication, with options for selective duplication • Extensions, modules and plug-ins can be shared across sites, with site-specific settings* • Money-saving 6
  • 7. Multiple Site Management Engine Summit The Problems • Installation-wide updates affect all sites. • If something goes wrong with an installation-wide asset, it can affect all the sites. • Be aware of extensions • Test carefully for scalability • Make sure you check licensing • Does it have site-specific settings or only global? • No automated way of exporting a site out of MSM 7 challenges
  • 8. Multiple Site Management Engine Summit The Details 8 • Members • Member groups • Add-ons • Find and replace Installation-wide resources Site-specific resources • Member group preferences • Specialty templates • Themes • Member profile templates
  • 9. Multiple Site Management Engine Summit Do you ... • Want a centralized install for multiple sites? • Want a single control panel as a Super Admin, but still limit site access to other member groups? • Need to establish consistency in branding with shared templates for different sites? • Want to share content across sites and reduce redundancy? • Want to have independent forums, but with a shared member base? 9
  • 10. Multiple Site Management Engine Summit Global offices 10 in thewild
  • 11. Multiple Site Management Engine Summit Academic schools 11 in thewild EE Podcast Episode #34: MSM Sites with John Rogerson http://5by5.tv/eepodcast/34
  • 12. Multiple Site Management Engine Summit Personal sites 12 in thewild +
  • 13. Multiple Site Management Engine Summit Getting Started 13 woohoo!
  • 14. Multiple Site Management Engine Summit Installation 1. Purchase 2. Download 14
  • 15. Multiple Site Management Engine Summit Installation 3. Extract .zip* 15 • EE_MSM_2.1.0/system/expressionengine • /controllers/ • /language/ • /libraries/
  • 16. Multiple Site Management Engine Summit Installation 4. Upload files to /system/expressionengine/ directory 16 /controllers/cp/sites.php /language/english/sites_lang.php /libraries/Sites.php /controllers/cp/sites.php /language/english/sites_lang.php /libraries/Sites.php Local Web server
  • 17. Multiple Site Management Engine Summit Backup database! 17
  • 18. Multiple Site Management Engine Summit Setting up MSM 1. Log in to control panel 2. Admin > General Configuration 3. Select “Yes” for enabling MSM 4. Submit 18
  • 19. Multiple Site Management Engine Summit Creating a new site • New “Sites” button 19
  • 20. Multiple Site Management Engine Summit Create a new site 1. Select “Sites” button 2. Choose “Edit Sites” 3. Select “Create New Site” 20
  • 21. Multiple Site Management Engine Summit Create a new site • Site label = name of site in control panel • Site short name = value used in code references • Site description = optional description of site 21
  • 22. Multiple Site Management Engine Summit Create a new site • You only get the chance to import during the creation process not during editing • Import = moves the data from your original site to the new site • Duplicate = copies the data and/or preferences from your original site to your new site 22
  • 23. Multiple Site Management Engine Summit Did you backup your database? 23
  • 24. Multiple Site Management Engine Summit Create a new site 1. Select the appropriate import/duplicate options • Channel • File upload preferences • Template groups • Global variables 2. Submit 24
  • 25. Multiple Site Management Engine Summit You are here • Breadcrumbs • Sites button 25
  • 26. Multiple Site Management Engine Summit Configure site 1. Admin > General configuration 2. Enter URL for site root 3. Submit 26
  • 27. Multiple Site Management Engine Summit Configure site 1. Design > Templates > Template Manager 2. Choose/create template group that contains home page 3. Select “Edit Group” 4. Select checkbox for site home page 5. Update 27
  • 28. Multiple Site Management Engine Summit Set up public access • Can use domain, sub- domain or sub-folder 1. Create directory under /public_html/ for new site 28
  • 29. Multiple Site Management Engine Summit Set up public access 2. Copy index.php from original site root not from system directory 3. Save to new directory just created for new site 29
  • 30. Multiple Site Management Engine Summit Set up public access 4. Edit index.php • $system_path = path from new site directory to EE system directory 30
  • 31. Multiple Site Management Engine Summit Set up public access 4. Edit index.php • $assign_to_config[‘site_name’] = Site short name • $assign_to_config[‘cp_url’] = Site control panel • $assign_to_config[‘site_url’] = Site URL 31
  • 32. Multiple Site Management Engine Summit Save templates as files 1. Are you in the right site? 2. Design > Templates > Template Manager 3. Select “Global Template Preferences” 32
  • 33. Multiple Site Management Engine Summit Save templates as files 4. Select “Yes” for allowing templates to be saved as files 5. Enter path to new site directory, where templates should be saved 6. Update 33
  • 34. Multiple Site Management Engine Summit Global variables • MSM comes with 3 global variables: • {site_id} = the site’s ID number • {site_label} = name of site in control panel • {site_short_name} = value used in code references 34
  • 35. Multiple Site Management Engine Summit Sharing content • To pull content from one site into another, use the site variable with the site short name as the value • site is available on all Channel and Comment tags, as well as RSS 35 {exp:channel:entries site="default_site" ...}
  • 36. Multiple Site Management Engine Summit Sharing content • You can also specify several sites with the site variable • Each site short name is listed, delimited with a pipe (|) • You can also exclude a site using not 36 {exp:channel:entries site="default_site|blog" ...} {exp:channel:entries site="not blog" ...}
  • 37. Multiple Site Management Engine Summit Sharing content • You can also use site short name with the orderby parameter • Add the site short name as a prefix to the field you want to order on 37 orderby="blog:title|default_site:description"
  • 38. Multiple Site Management Engine Summit Sharing templates • You can embed a template from one site in a template from another by prefixing the template group/ template with the site short name 38 {embed="default_site:global/nav"}
  • 39. Multiple Site Management Engine Summit Resources • EE Documentation http://expressionengine.com/user_guide/cp/sites/index.html • Building a Sub-Folder Site in ExpressionEngine MSM http://www.designlitm.us/articles/building_a_sub- folder_site_in_expressionengine_msm/ • Splitting a Site out of an ExpressionEngine Multiple Site Manager Installation* http://www.train-ee.com/courseware/free-tutorials/comments/splitting-a- site-out-of-an-ee-msm-installation/ 39
  • 40. Multiple Site Management Engine Summit Questions? 40 emily@emilylewisdesign.com @emilylewis
  • 41. Multiple Site Management Engine Summit Thank you! 41