Book Image

Drupal 6 Content Administration

By : J. Ayen Green
Book Image

Drupal 6 Content Administration

By: J. Ayen Green

Overview of this book

Often a company hires a web designer to build its Drupal site, and then takes over running the site in house. This book is for the Content Editors concerned with the ongoing creation and maintenance of the site content. In a few hours, you'll have the knowledge needed to maintain and edit your web site as a content-rich place that visitors return to again and again. There are many books available to help you administer a Drupal site, but this is the only one specifically for Content Editors. This book doesn't cover designing or creating a site. However, anybody who has built their own site but needs some help using the article management features will also benefit from it. This book is a quick-start guide, aimed at Content Editors. The author's experience enables him to explain in an efficient and interactive manner how you can keep your site up to date. The book begins with a discussion of content management and Drupal and then teaches you how to create content, add elements to it, and make the content findable. You will then learn to set up the framework for a creative team and the various options for editing content offline, their benefits and pitfalls. This book helps you to quickly and easily solve problems, and manage content and users for a web site. It will help you become a more effective and efficient manager of Drupal-based web sites.
Table of Contents (15 chapters)
Drupal 6 Content Administration
Credits
About the Author
About the Reviewers
Preface

Downloading Drupal 6.x


Once the environmental settings have been verified, we can proceed to the task of downloading the Drupal installation files.

  1. 1. Navigate to the drupal.org/project/drupal page. This page will look similar to the screenshot below.

  2. 2. Download whichever version 6.x is shown in green (at the time of writing it was 6.11), and save the file (drupal-6.11.tar.gz) on your computer, but don't forget to make a note of where you put it.

  3. 3. What you do next will depend on whether you have shell access to your hosting account, or just FTP. If shell access is available, then skip to Step 7.

    The problem with uploading the file via FTP is that once you have done that, you will have no way to 'unzip' it. It will be easier to do that on your local computer, and then upload the resulting files via FTP.

  4. 4. Do a Web search for 'free gzip tar utility'. A good one is 7-zip. You will first want to extract from the .gz file that you have downloaded, such as drupal-6.11.tar.gz. This will leave you with a single, new file, named drupal-6.11.tar (without the .gz).

  5. 5. Use your utility to unarchive the .tar file (known as a 'tar-ball'). This will leave you with a directory called drupal-6.11, in which the Drupal file system can be found.

  6. 6. Connect via FTP to the location where you want the files to be uploaded. Make sure that you are in the actual directory where you want to them to be placed (usually a directory named public_html or www inside the domain directory). Here, you want to upload all of the files within the Drupal directory, but not the directory itself. If you are running a FTP utility like FileZilla, then you can double-click on the Drupal directory to open it. Then select everything inside it and drag it all at once, and drop them onto the directory into which they should be placed (such as public_html or www). Skip to step 13.

  7. 7. (From step 3) Upload the tar.gz file to the directory in which your Drupal installation will reside in your domain, such as public_html or www.

  8. 8. Navigate in your shell to the directory where you put the file.

  9. 9. Enter the shell command tar zxvf drupal-6.11.tar.gz (or whatever your filename is).

  10. 10. You will now have all of the files unpacked, but they are not quite in the right place. They have been put in a directory with the same name as the file, but you don't want that directory between the domain root and all of the files. The files need to be moved 'up' one level (out of the directory in which they are now).

  11. 11. Enter the shell command mv * ../ to move the files.

  12. 12. Drupal provides a default configuration file. We need to make a copy of it, which will then be used for our installation. In your FTP tool or your shell, navigate to the folder sites/default/ and make a copy of the file default.settings.php. You should then rename it to settings.php.

  13. 13. The final directory structure can be seen in the following screenshot.

    Note

    This structure reflects version 6.11; other versions may vary.