Book Image

Choosing an Open Source CMS: Beginner's Guide

By : Nirav Mehta
Book Image

Choosing an Open Source CMS: Beginner's Guide

By: Nirav Mehta

Overview of this book

There are many powerful open source CMSs available to take the pain away from managing a web site. These systems are feature rich, often easy to use, and free. Unfortunately, there are so many choices it's tough to be sure you're choosing the right one. How can you be sure that you are selecting and working with the right tool? This book will guide you through choosing the right CMS for your needs. You can be confident in your choice of CMS for the needs of your project. It will also help you make a start using the CMS, and give you a feel for what it's like to use it ñ even before you install it yourself. Are you bewildered by the many open source CMSs available online? Open source CMSs are the best way to create and manage sophisticated web sites. You can create a site that precisely meets your business goals, and keep the site up to date easily because these systems give you full control over every aspect of your site. Because open source CMSs are free to download, you have a huge amount of choice between the various systems. Yet there are many open source CMSs to choose from, each with unique strengths ñ and occasionally limitations too. Choosing between the bewildering number of options can be tough. Making the wrong choice early on may lead to a lot of wasted work, because you'll have a half-finished site that doesn't meet your initial requirements ñ and needs to be restarted from scratch. This book will show you how to avoid choosing the wrong CMS. It will guide you through assessing your site requirements, and then using that assessment to identify the CMS that will best fit your needs. It contains discussions of the major CMSs, and the issues that you should consider when choosing: their complexity to use, their features and the power they offer. It discusses technical considerations such as programming languages and compliance with best practice standards in a clear, friendly way that non-technical readers can understand. The book also contains quick-start guides and examples for the most popular CMSs such as WordPress, Joomla!, and Drupal, so that you can experiment with these CMSs, get a feel for how they work, and start using them to build your site. After reading this book, you can be confident that your CMS choice will support your web site's needs because you have carefully assessed your requirements and explored the available options.
Table of Contents (21 chapters)
Choosing an Open Source CMS
Credits
About the author
About the reviewers
Preface
13
Hosting your CMS-Powered Site

Time for action-install WordPress


Now that we are ready to install WordPress, let's go ahead!

  1. 1. Go to www.wordpress.org and download the latest version of WordPress.

  2. 2. Unzip the source code.

  3. 3. Create a new database on your host—call it wordpress. Create a new user oscms with the password oscmsPass and give it access to the database. You can do this using your web host's control panel. Otherwise, you can run the following SQL queries as MySQL root (administrator) user:

    create database wordpress;
    grant all privileges on wordpress.* to oscms@localhost identified by 'oscmsPass';
    flush privileges;
    
  4. 4. Locate a wp-config-sample.php file in the WordPress source code you unzipped. Copy that file as wp-config.php.

  5. 5. Open wp-config.php and edit the first few lines to add database connection information. The file may look like the following:

  6. 6. Using FTP, upload all contents of the wordpress folder to your web server's web root folder. The web root folder may be called public_html, htdocs, www, or...