SlideShare a Scribd company logo
1 of 77
Open Source Content
Management Systems

     Karen A. Coombs
     Amanda Hollister
What is Open Source
     Software
• “free” software
• source code is available for you to examine
• Source code can be modified
• Modifications can be redistributed
• Typically developed in a collaborative
  fashion by many people
What is a CMS

• Content Management System
• System for creating, organizing and publishing
  web content
• Create web content without knowing any code
• Content stored in database back-end and edited/
  create with web-programming language
Why use a CMS
• Can focus on site organization not content
  management
• Can give others ability to update their own
  content
• One install can manage 10,000,000 html
  pages
• Easy off-site access
What are some OSS
        CMS?
• Wordpress
• Joomla
• Drupal
• ModX
• Concrete5
• Plone
What will we cover?

• Joomla
• Wordpress
• Drupal
Wordpress as CMS
• PHP and MySQL Backend
• Used by many libraries for blogging
• Some libraries are using it for some CMS
  functions:
 • Atchison Public Library, California State
    University East Bay, Dartmouth Public
    Libraries, Millsaps College Library, Park
    County Library, Patagonia Public Library,
    Stevens Memorial Library
Wordpress Pages
• Outside the normal “sequence” of blog
• Typically, content input via a WYSIWYG
  editor
• Can be hierarchical
• Can use different templates
• Page order
Making a Page Your
    Homepage
• Settings
 • Reading
   • Front page displays
• Choose the page you want to be your
  homepage from the drop down
• Make another page your “news” page
Themes
•   In choosing a theme you should consider the
    following:
    •   what kind of banner do you want?

    •   where do you want your site navigation to appear?

    •   what kinds of layouts do you want to use, one column, two column,
        three column?

    •   do you want a fixed or scalable layout?


•   Sources for Themes
        •   http://wordpress.org/extend/themes/

        •   http://www.templatesbrowser.com/wordpress-themes/
Basic Theme Structure
• index.php
• style.css
• header.php
• footer.php
• sidebar.php
• comments.php
• comments-popup.php
Customizing Your
        Theme

• Widgets
• Template Tags
• Conditional Tags
Widgets

• What is a widget?
• Default Widgets
 •   Archives, Calendar, Categories, Links, Meta,
     Pages, Recent Comments, Recent Posts, RSS,
     Search, Tag Cloud, and Text
Widgets

• Where to get other widgets
 •   http://wordpress.org/extend/plugins/tags/widget

• Other widgets to consider
 •   Flexi Pages Widget, Category Posts Widget
Key Template Tags
•   wp_list_pages()

•   Post tags - need to sit in the Loop

    •   the_title()

    •   the_content()

    •   the_meta()

    •   the_category()

    •   the_tags()

•   wp_list_bookmarks()
Helpful Conditional
            Tags
•   is_front_page()

•   is_page()

    •   can include or exclude pages

•   no conditional tag to test for subpages

•   is_page_template()

    •   can check to see if a specific page template is
        being used

•   is_home() - posts page, which is typically the site
    home
Custom Fields
• Allows you to add additional fields to pages
  or posts
• Key - Value pairs
• Stored as text in database
• Can be displayed using
  <?php the_meta(); ?>
• Better way is to code to display each field
  <?php $key="mykey"; echo get_post_meta($post->ID, $key, true); ?>
Useful Plugins
• Blogroll Links
• Google Maps for Wordpress
• Inline Feed
• OpenBook Book Data
• Widget Logic
• Event Calendar 3
Advanced Techniques
           and Tricks

• MeeboMe in your sidebar
• Creating a Photo Gallery
  •   NexGen Gallery plugin

• Scriblio plugin
Scriblio

• Plugin for Wordpress
• Import MARC records
• Use as NextGen Catalog
• Catalog digital library objects
Wordpress Strengths

• Easy to use
• Lots of plugins available
• Easy to create new themes of modify
  existing themes
• Large user base
Wordpress Issues
• Can’t easily create custom content types
 • Contact Info
• Lacks flexibility to deal with complex types
  of objects with different types of fields out
  of the box
• Customizing display of group of page/posts
  requires knowledge of PHP
Drupal as CMS
• PHP and MySQL backend
 • Strongly recommend using PHP5
• Used by a variety of libraries including
 • Darien Public Library, Athens County
    Public Library, McMasters University
    Library, University of Prince Edward
    Island
Making a Page Your
      Homepage
• By default Drupal displays the most recent
  “nodes” added as the homepage
• You can override this by going to
 • Administer > Site configuration > Site
    Information
  • Change the “Default front page” field to
    be the node you want to be your
    homepage
Themes

• http://drupal.org/project/Themes
• http://drupal2u.com
• http://mydrupal.com/downloads
Modules to Add

• FCKEditor
• IMCE
• Image
• Event
Modules to Add
• CCK
 • Date, URL, Email
• Contact Form
• MultiBlock
• Token
• Views
• View Reference
Content Types

• Pages
• Stories
• Image
Blocks

• Default Blocks
• Can be made to display on certain page
 • include
 • exclude
 • PHP
Blocks

• Custom Blocks
 • HTML
 • PHP code
• Views
Menus

• Primary Links
• Secondary Links
• Navigation
• Menus you create
Taxonomies
• Used to organize content on your site
 • Categories
 • Tags
• Can be hierarchical, or free-form
• Different taxonomies can be used for
  different content types
Feed Aggregator

• Does more than aggregate feeds
• Creates a block for every feed
• Allows you to embed feed in a node
• Need to give Anonymous user permission
  to access feeds
Image gallery


• Create Galleries
• Uploaded Images can be associated with a
  gallery
CCK
• Add new fields to any Content Type
• Control the type of field added
 • Text, Number
 • Date, Email, URL
• CCK fields can be used in views
• Remember to give Anonymous user
  permission to access fields you create
Create Your Own
     Content Type
• Links
 • URL field
• Staff
 • Email field
Views
• Types
 • Page
 • Block
 • Feed
• Display
 • Node or Fields
• Limit criteria
• Sort Criteria
Filters

• Default filters
• Other filters often classified as “Modules”
 • insert_view
Drupal Strengths
• Exceptional Flexibility
• Easy to create new content types
• Substantial user base particularly in libraries
 • Drupal4Lib
 • SOPAC
 • Drupal + Fedora
 • Drupal for Digital Libraries - McMasters
Drupal Issues
• Some modules are buggy and problematic
• High learning curve
• Not as many modules and filters developed
  as one would like
 • library-related modules in particular
    missing in some areas
Choices, choices

• Wordpress is best for small sites; has an
  easy start up
• Joomla is best for medium sites, average
  complexity, relatively easy UI
• Drupal can handle multiple, large, complex
  sites
Lessons Learned
• Learning a CMS takes time
• Important to map out your site’s content
  to know what modules, widgets need to be
  installed
• Need to decide how you want your site to
  look in order to choose an appropriate
  theme
• Understand each CMS’s strengths and
  limitations

More Related Content

What's hot

SilverStripe From a Developer's Perspective
SilverStripe From a Developer's PerspectiveSilverStripe From a Developer's Perspective
SilverStripe From a Developer's Perspectiveajshort
 
My Site is slow - Drupal Camp London 2013
My Site is slow - Drupal Camp London 2013My Site is slow - Drupal Camp London 2013
My Site is slow - Drupal Camp London 2013hernanibf
 
WordPress can do that?!
WordPress can do that?!WordPress can do that?!
WordPress can do that?!Scott McNulty
 
WordPress intro
WordPress introWordPress intro
WordPress introdbnorth
 
WCBos13 intermediate workshop
WCBos13 intermediate workshopWCBos13 intermediate workshop
WCBos13 intermediate workshopBoston WordPress
 
Drupal architectures for flexible content - Drupalcon Barcelona
Drupal architectures for flexible content - Drupalcon BarcelonaDrupal architectures for flexible content - Drupalcon Barcelona
Drupal architectures for flexible content - Drupalcon Barcelonahernanibf
 
Meeple Communications Introduction to WordPress April 2017
Meeple Communications Introduction to WordPress April 2017Meeple Communications Introduction to WordPress April 2017
Meeple Communications Introduction to WordPress April 2017Nadine Wildmann
 
WordPress Beginners Workshop
WordPress Beginners WorkshopWordPress Beginners Workshop
WordPress Beginners WorkshopThe Toolbox, Inc.
 
The Flexibility of WordPress
The Flexibility of WordPressThe Flexibility of WordPress
The Flexibility of WordPressStephanie Eckles
 
Week01 jan19 introductionto_php
Week01 jan19 introductionto_phpWeek01 jan19 introductionto_php
Week01 jan19 introductionto_phpJeanho Chu
 
From WordPress With Love
From WordPress With LoveFrom WordPress With Love
From WordPress With LoveUp2 Technology
 
Drupal: Northeastern University Libraries website
Drupal: Northeastern University Libraries websiteDrupal: Northeastern University Libraries website
Drupal: Northeastern University Libraries websiteiFactory
 
Search Engine Optimization - The eye-opening presentation for beginners
Search Engine Optimization - The eye-opening presentation for beginnersSearch Engine Optimization - The eye-opening presentation for beginners
Search Engine Optimization - The eye-opening presentation for beginnersUp2 Technology
 
Web design-workflow
Web design-workflowWeb design-workflow
Web design-workflowPeter Kaizer
 
Business 2.0 with WordPress
Business 2.0 with WordPressBusiness 2.0 with WordPress
Business 2.0 with WordPressMario Peshev
 

What's hot (20)

SilverStripe From a Developer's Perspective
SilverStripe From a Developer's PerspectiveSilverStripe From a Developer's Perspective
SilverStripe From a Developer's Perspective
 
My Site is slow - Drupal Camp London 2013
My Site is slow - Drupal Camp London 2013My Site is slow - Drupal Camp London 2013
My Site is slow - Drupal Camp London 2013
 
Wp 3hr-course
Wp 3hr-courseWp 3hr-course
Wp 3hr-course
 
WordPress can do that?!
WordPress can do that?!WordPress can do that?!
WordPress can do that?!
 
WordPress intro
WordPress introWordPress intro
WordPress intro
 
WCBos13 intermediate workshop
WCBos13 intermediate workshopWCBos13 intermediate workshop
WCBos13 intermediate workshop
 
Drupal architectures for flexible content - Drupalcon Barcelona
Drupal architectures for flexible content - Drupalcon BarcelonaDrupal architectures for flexible content - Drupalcon Barcelona
Drupal architectures for flexible content - Drupalcon Barcelona
 
Meeple Communications Introduction to WordPress April 2017
Meeple Communications Introduction to WordPress April 2017Meeple Communications Introduction to WordPress April 2017
Meeple Communications Introduction to WordPress April 2017
 
WordPress Beginners Workshop
WordPress Beginners WorkshopWordPress Beginners Workshop
WordPress Beginners Workshop
 
The Flexibility of WordPress
The Flexibility of WordPressThe Flexibility of WordPress
The Flexibility of WordPress
 
Week01 jan19 introductionto_php
Week01 jan19 introductionto_phpWeek01 jan19 introductionto_php
Week01 jan19 introductionto_php
 
Emkane RCC wp qs
Emkane RCC wp qsEmkane RCC wp qs
Emkane RCC wp qs
 
From WordPress With Love
From WordPress With LoveFrom WordPress With Love
From WordPress With Love
 
Web designing syllabus
Web designing syllabusWeb designing syllabus
Web designing syllabus
 
Drupal: Northeastern University Libraries website
Drupal: Northeastern University Libraries websiteDrupal: Northeastern University Libraries website
Drupal: Northeastern University Libraries website
 
Lecture 2 - HTML Basics
Lecture 2 - HTML BasicsLecture 2 - HTML Basics
Lecture 2 - HTML Basics
 
Search Engine Optimization - The eye-opening presentation for beginners
Search Engine Optimization - The eye-opening presentation for beginnersSearch Engine Optimization - The eye-opening presentation for beginners
Search Engine Optimization - The eye-opening presentation for beginners
 
Web design-workflow
Web design-workflowWeb design-workflow
Web design-workflow
 
Business 2.0 with WordPress
Business 2.0 with WordPressBusiness 2.0 with WordPress
Business 2.0 with WordPress
 
Wordpress 101
Wordpress 101Wordpress 101
Wordpress 101
 

Viewers also liked

Freedom of the Seas
Freedom of the SeasFreedom of the Seas
Freedom of the Seaslag24
 
Real Life Experiences With Library APIS
Real Life Experiences With Library APISReal Life Experiences With Library APIS
Real Life Experiences With Library APISlibrarywebchic
 
IFLA 2009 Web Cast - Creating a Successful Internet Presence
IFLA 2009 Web Cast - Creating a Successful Internet PresenceIFLA 2009 Web Cast - Creating a Successful Internet Presence
IFLA 2009 Web Cast - Creating a Successful Internet Presencelibrarywebchic
 
Drupal Open Source Everything
Drupal Open Source EverythingDrupal Open Source Everything
Drupal Open Source Everythinglibrarywebchic
 
كيفية إضافة كاتب مساهم إلى مدونتك
كيفية إضافة كاتب مساهم إلى مدونتككيفية إضافة كاتب مساهم إلى مدونتك
كيفية إضافة كاتب مساهم إلى مدونتكJeeran
 
مشاهدة زيارات صفحتي
مشاهدة زيارات صفحتيمشاهدة زيارات صفحتي
مشاهدة زيارات صفحتيJeeran
 

Viewers also liked (7)

Freedom of the Seas
Freedom of the SeasFreedom of the Seas
Freedom of the Seas
 
Real Life Experiences With Library APIS
Real Life Experiences With Library APISReal Life Experiences With Library APIS
Real Life Experiences With Library APIS
 
Widget Workshop
Widget WorkshopWidget Workshop
Widget Workshop
 
IFLA 2009 Web Cast - Creating a Successful Internet Presence
IFLA 2009 Web Cast - Creating a Successful Internet PresenceIFLA 2009 Web Cast - Creating a Successful Internet Presence
IFLA 2009 Web Cast - Creating a Successful Internet Presence
 
Drupal Open Source Everything
Drupal Open Source EverythingDrupal Open Source Everything
Drupal Open Source Everything
 
كيفية إضافة كاتب مساهم إلى مدونتك
كيفية إضافة كاتب مساهم إلى مدونتككيفية إضافة كاتب مساهم إلى مدونتك
كيفية إضافة كاتب مساهم إلى مدونتك
 
مشاهدة زيارات صفحتي
مشاهدة زيارات صفحتيمشاهدة زيارات صفحتي
مشاهدة زيارات صفحتي
 

Similar to Open Source CMS Playroom

Wp nhcc portfolio
Wp nhcc portfolioWp nhcc portfolio
Wp nhcc portfoliogregorvios
 
WordPress - Open Source Overview Presentation
WordPress - Open Source Overview PresentationWordPress - Open Source Overview Presentation
WordPress - Open Source Overview PresentationAndy Stratton
 
Visual Design for Content Management Systems
Visual Design for Content Management SystemsVisual Design for Content Management Systems
Visual Design for Content Management SystemsDani Nordin
 
Wordpress intro
Wordpress introWordpress intro
Wordpress introthe-colab
 
WordPress Themes and Plugins
WordPress Themes and PluginsWordPress Themes and Plugins
WordPress Themes and Pluginssuperann
 
WordPress as a CMS (short version)
WordPress as a CMS (short version)WordPress as a CMS (short version)
WordPress as a CMS (short version)Stephanie Leary
 
The WordPress University 2012
The WordPress University 2012The WordPress University 2012
The WordPress University 2012Stephanie Leary
 
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
 
Customising civicrm
Customising civicrmCustomising civicrm
Customising civicrmChris Ward
 
Open source wordpress and drupal
Open source wordpress and drupalOpen source wordpress and drupal
Open source wordpress and drupalBen Mango
 
Wordpress website development
Wordpress website developmentWordpress website development
Wordpress website developmentJohn Faust
 
Add Custom Post Types to Your WordPress Website
Add Custom Post Types to Your WordPress WebsiteAdd Custom Post Types to Your WordPress Website
Add Custom Post Types to Your WordPress WebsiteDustin Hartzler
 
WordPress Blogs 101
WordPress Blogs 101WordPress Blogs 101
WordPress Blogs 101Tom McGee
 
Slides 3 - Wordpress Networks Sites
Slides 3 - Wordpress Networks SitesSlides 3 - Wordpress Networks Sites
Slides 3 - Wordpress Networks SitesMassimo Callisto
 

Similar to Open Source CMS Playroom (20)

Wp nhcc portfolio
Wp nhcc portfolioWp nhcc portfolio
Wp nhcc portfolio
 
WordPress - Open Source Overview Presentation
WordPress - Open Source Overview PresentationWordPress - Open Source Overview Presentation
WordPress - Open Source Overview Presentation
 
Newspapers with WordPress
Newspapers with WordPressNewspapers with WordPress
Newspapers with WordPress
 
WordPress as a CMS
WordPress as a CMSWordPress as a CMS
WordPress as a CMS
 
Visual Design for Content Management Systems
Visual Design for Content Management SystemsVisual Design for Content Management Systems
Visual Design for Content Management Systems
 
Wordpress intro
Wordpress introWordpress intro
Wordpress intro
 
72d5drupal
72d5drupal72d5drupal
72d5drupal
 
WordPress Themes and Plugins
WordPress Themes and PluginsWordPress Themes and Plugins
WordPress Themes and Plugins
 
WordPress as a CMS (short version)
WordPress as a CMS (short version)WordPress as a CMS (short version)
WordPress as a CMS (short version)
 
The WordPress University 2012
The WordPress University 2012The WordPress University 2012
The WordPress University 2012
 
Wordpress 101 v2
Wordpress 101 v2Wordpress 101 v2
Wordpress 101 v2
 
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
 
Customising civicrm
Customising civicrmCustomising civicrm
Customising civicrm
 
Open source wordpress and drupal
Open source wordpress and drupalOpen source wordpress and drupal
Open source wordpress and drupal
 
Wordpress website development
Wordpress website developmentWordpress website development
Wordpress website development
 
Add Custom Post Types to Your WordPress Website
Add Custom Post Types to Your WordPress WebsiteAdd Custom Post Types to Your WordPress Website
Add Custom Post Types to Your WordPress Website
 
WordPress Blogs 101
WordPress Blogs 101WordPress Blogs 101
WordPress Blogs 101
 
WordPress Complete Tutorial
WordPress Complete TutorialWordPress Complete Tutorial
WordPress Complete Tutorial
 
Module 4 - Dreamweaver Templates (Static vs. Dynamic Content)
Module 4 - Dreamweaver Templates (Static vs. Dynamic Content)Module 4 - Dreamweaver Templates (Static vs. Dynamic Content)
Module 4 - Dreamweaver Templates (Static vs. Dynamic Content)
 
Slides 3 - Wordpress Networks Sites
Slides 3 - Wordpress Networks SitesSlides 3 - Wordpress Networks Sites
Slides 3 - Wordpress Networks Sites
 

More from librarywebchic

Library Mashups & APIs
Library Mashups & APIsLibrary Mashups & APIs
Library Mashups & APIslibrarywebchic
 
Building a Drupal-driven Intranet
Building a Drupal-driven IntranetBuilding a Drupal-driven Intranet
Building a Drupal-driven Intranetlibrarywebchic
 
ELAG - Mashing Up and Remixing the Library Website
ELAG - Mashing Up and Remixing the Library WebsiteELAG - Mashing Up and Remixing the Library Website
ELAG - Mashing Up and Remixing the Library Websitelibrarywebchic
 
Xml Applications Libraries
Xml Applications LibrariesXml Applications Libraries
Xml Applications Librarieslibrarywebchic
 

More from librarywebchic (6)

Library Mashups & APIs
Library Mashups & APIsLibrary Mashups & APIs
Library Mashups & APIs
 
Building a Drupal-driven Intranet
Building a Drupal-driven IntranetBuilding a Drupal-driven Intranet
Building a Drupal-driven Intranet
 
ELAG - Mashing Up and Remixing the Library Website
ELAG - Mashing Up and Remixing the Library WebsiteELAG - Mashing Up and Remixing the Library Website
ELAG - Mashing Up and Remixing the Library Website
 
Xml Applications Libraries
Xml Applications LibrariesXml Applications Libraries
Xml Applications Libraries
 
Website Mashup
Website MashupWebsite Mashup
Website Mashup
 
Open Source CMS
Open Source CMSOpen Source CMS
Open Source CMS
 

Recently uploaded

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
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
🐬 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
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
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
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
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
 
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
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 

Recently uploaded (20)

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
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
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
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
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
 
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
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 

Open Source CMS Playroom

  • 1. Open Source Content Management Systems Karen A. Coombs Amanda Hollister
  • 2. What is Open Source Software • “free” software • source code is available for you to examine • Source code can be modified • Modifications can be redistributed • Typically developed in a collaborative fashion by many people
  • 3. What is a CMS • Content Management System • System for creating, organizing and publishing web content • Create web content without knowing any code • Content stored in database back-end and edited/ create with web-programming language
  • 4. Why use a CMS • Can focus on site organization not content management • Can give others ability to update their own content • One install can manage 10,000,000 html pages • Easy off-site access
  • 5. What are some OSS CMS? • Wordpress • Joomla • Drupal • ModX • Concrete5 • Plone
  • 6. What will we cover? • Joomla • Wordpress • Drupal
  • 7. Wordpress as CMS • PHP and MySQL Backend • Used by many libraries for blogging • Some libraries are using it for some CMS functions: • Atchison Public Library, California State University East Bay, Dartmouth Public Libraries, Millsaps College Library, Park County Library, Patagonia Public Library, Stevens Memorial Library
  • 8. Wordpress Pages • Outside the normal “sequence” of blog • Typically, content input via a WYSIWYG editor • Can be hierarchical • Can use different templates • Page order
  • 9. Making a Page Your Homepage • Settings • Reading • Front page displays • Choose the page you want to be your homepage from the drop down • Make another page your “news” page
  • 10.
  • 11. Themes • In choosing a theme you should consider the following: • what kind of banner do you want? • where do you want your site navigation to appear? • what kinds of layouts do you want to use, one column, two column, three column? • do you want a fixed or scalable layout? • Sources for Themes • http://wordpress.org/extend/themes/ • http://www.templatesbrowser.com/wordpress-themes/
  • 12. Basic Theme Structure • index.php • style.css • header.php • footer.php • sidebar.php • comments.php • comments-popup.php
  • 13. Customizing Your Theme • Widgets • Template Tags • Conditional Tags
  • 14. Widgets • What is a widget? • Default Widgets • Archives, Calendar, Categories, Links, Meta, Pages, Recent Comments, Recent Posts, RSS, Search, Tag Cloud, and Text
  • 15.
  • 16.
  • 17.
  • 18. Widgets • Where to get other widgets • http://wordpress.org/extend/plugins/tags/widget • Other widgets to consider • Flexi Pages Widget, Category Posts Widget
  • 19.
  • 20. Key Template Tags • wp_list_pages() • Post tags - need to sit in the Loop • the_title() • the_content() • the_meta() • the_category() • the_tags() • wp_list_bookmarks()
  • 21. Helpful Conditional Tags • is_front_page() • is_page() • can include or exclude pages • no conditional tag to test for subpages • is_page_template() • can check to see if a specific page template is being used • is_home() - posts page, which is typically the site home
  • 22. Custom Fields • Allows you to add additional fields to pages or posts • Key - Value pairs • Stored as text in database • Can be displayed using <?php the_meta(); ?> • Better way is to code to display each field <?php $key="mykey"; echo get_post_meta($post->ID, $key, true); ?>
  • 23. Useful Plugins • Blogroll Links • Google Maps for Wordpress • Inline Feed • OpenBook Book Data • Widget Logic • Event Calendar 3
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36. Advanced Techniques and Tricks • MeeboMe in your sidebar • Creating a Photo Gallery • NexGen Gallery plugin • Scriblio plugin
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43. Scriblio • Plugin for Wordpress • Import MARC records • Use as NextGen Catalog • Catalog digital library objects
  • 44.
  • 45.
  • 46. Wordpress Strengths • Easy to use • Lots of plugins available • Easy to create new themes of modify existing themes • Large user base
  • 47. Wordpress Issues • Can’t easily create custom content types • Contact Info • Lacks flexibility to deal with complex types of objects with different types of fields out of the box • Customizing display of group of page/posts requires knowledge of PHP
  • 48. Drupal as CMS • PHP and MySQL backend • Strongly recommend using PHP5 • Used by a variety of libraries including • Darien Public Library, Athens County Public Library, McMasters University Library, University of Prince Edward Island
  • 49. Making a Page Your Homepage • By default Drupal displays the most recent “nodes” added as the homepage • You can override this by going to • Administer > Site configuration > Site Information • Change the “Default front page” field to be the node you want to be your homepage
  • 50.
  • 52. Modules to Add • FCKEditor • IMCE • Image • Event
  • 53. Modules to Add • CCK • Date, URL, Email • Contact Form • MultiBlock • Token • Views • View Reference
  • 54. Content Types • Pages • Stories • Image
  • 55.
  • 56. Blocks • Default Blocks • Can be made to display on certain page • include • exclude • PHP
  • 57. Blocks • Custom Blocks • HTML • PHP code • Views
  • 58.
  • 59. Menus • Primary Links • Secondary Links • Navigation • Menus you create
  • 60. Taxonomies • Used to organize content on your site • Categories • Tags • Can be hierarchical, or free-form • Different taxonomies can be used for different content types
  • 61. Feed Aggregator • Does more than aggregate feeds • Creates a block for every feed • Allows you to embed feed in a node • Need to give Anonymous user permission to access feeds
  • 62.
  • 63. Image gallery • Create Galleries • Uploaded Images can be associated with a gallery
  • 64.
  • 65.
  • 66. CCK • Add new fields to any Content Type • Control the type of field added • Text, Number • Date, Email, URL • CCK fields can be used in views • Remember to give Anonymous user permission to access fields you create
  • 67. Create Your Own Content Type • Links • URL field • Staff • Email field
  • 68.
  • 69.
  • 70. Views • Types • Page • Block • Feed • Display • Node or Fields • Limit criteria • Sort Criteria
  • 71.
  • 72.
  • 73. Filters • Default filters • Other filters often classified as “Modules” • insert_view
  • 74. Drupal Strengths • Exceptional Flexibility • Easy to create new content types • Substantial user base particularly in libraries • Drupal4Lib • SOPAC • Drupal + Fedora • Drupal for Digital Libraries - McMasters
  • 75. Drupal Issues • Some modules are buggy and problematic • High learning curve • Not as many modules and filters developed as one would like • library-related modules in particular missing in some areas
  • 76. Choices, choices • Wordpress is best for small sites; has an easy start up • Joomla is best for medium sites, average complexity, relatively easy UI • Drupal can handle multiple, large, complex sites
  • 77. Lessons Learned • Learning a CMS takes time • Important to map out your site’s content to know what modules, widgets need to be installed • Need to decide how you want your site to look in order to choose an appropriate theme • Understand each CMS’s strengths and limitations