Book Image

Drupal: Creating Blogs, Forums, Portals, and Community Websites

By : David Mercer
Book Image

Drupal: Creating Blogs, Forums, Portals, and Community Websites

By: David Mercer

Overview of this book

<p>Drupal is one of the most popular content management systems on the internet. Based on PHP/MySQL, its power and flexibility combined with its exceptional design mean it is already on the way to becoming the de facto standard for CMS Websites. Drupal’s modular design and structured source code make it both highly flexible and easily extended and modified. Drupal is extremely scalable, making it ideal for both a simple personal website as well as an industrial strength commercial or institutional web presence.<br /> <br /> Drupal is a model open source project in that it has a large, friendly community of people who contribute to the project in various ways.&nbsp; Drupal is not only free and easy to use, but this community provides on going mutual support.<br /> <br /> Drupal’s power means choosing an initial pathway can be daunting. The flexibility and power of its content management features mean the right approach needs to be taken.&nbsp; This book takes you from initial set up through site design and creation in a series of carefully structured steps. While there are a few advanced topics that are beyond the scope of the book, all of the core stages of creating a website using Drupal are covered in detail.</p> <p>&nbsp;</p>
Table of Contents (16 chapters)
Drupal
Credits
About the Author
About the Reviewers
Preface

Backups


There are plenty of reasons to make backups of both the file system and database. As mentioned several times throughout the course of the book, you should back up anything that is at risk of being damaged whenever you modify code, or add a new module, or even upgrade versions of Drupal. It sounds like a real pain to do this because the vast majority of the time, nothing goes wrong with the application. However, sooner or later, for some unfathomable reason, if you don't make backups, you will get stung in precisely the most painful spot.

Most especially, corrupting or breaking a database, which in turn leads to a loss of precious data, can be a real pain in the… back end of your application! So, while it is fairly easy to back up the files on the file system by simply making copies of the directories in question, or indeed copying the entire drupal folder (whatever you have named it), it is of paramount importance that you learn how to back up the database too, because this is not...