8 min read

Drupal 7 First Look

Drupal 7 First Look

Learn the new features of Drupal 7, how they work and how they will impact you

  • Get to grips with all of the new features in Drupal 7
  • Upgrade your Drupal 6 site, themes, and modules to Drupal 7
  • Explore the new Drupal 7 administration interface and map your Drupal 6 administration interface to the new Drupal 7 structure
  • Complete coverage of the DBTNG database layer with usage examples and all API changes for both Themes and Modules
        Read more about this book      

(For more resources on Drupal, see here.)

Drupal’s installation process has always been very easy to use, and the Drupal 7 installation makes things even easier.

Before beginning to install Drupal 7, you will need a web server running the Apache HTTPD web server. You can also use IIS on Microsoft Windows, but the Apache server is preferred and you will be able to obtain support from the community more easily if you use the Apache server.

Want to easily install Apache onto a Microsoft Windows machine? Try XAMPP, which is published by Apache Friends. This package includes Apache, MySQL, and PHP with a standard Microsoft Windows installer. You can download XAMPP from http://www.apachefriends. org/en/xampp.html. Other options include WAMP (http://www. wampserver.com/en/) and MoWeS Portable (http://www. chsoftware.net/en/mowes/mowesportable/mowes.htm).

Your server will also need PHP installed on it. Drupal requires at least PHP version 5.2.0. As of this writing, there are some hosts that still do not have PHP 5.2.0 or later installed on their shared hosting accounts, and Red Hat does not include PHP 5.2.0 or later in its default distribution. Check with your host or system administrator before installing Drupal to make sure that the correct version is available.

In addition to the web server and PHP, you will also need a database. MySQL and PostgreSQL are the databases that are most frequently used with Drupal, and of the two, MySQL is much more widely used. That being said, you can use Drupal with many different databases and the new DBTNG database abstraction layer will make it easier to deploy to any database. If you are using MySQL, you will need version 5.0.15 or later installed. If you are using PostgreSQL, you will need PostgreSQL 8.3.0 or later. SQLite is also officially supported for use with Drupal and you will need version 3.4.2 or later.

After you have a server set up with the proper software, you can download Drupal and begin the installation process.

Obtaining Drupal

If you have used previous versions of Drupal, the process for downloading Drupal is the same as always. If you are new to Drupal, you will use the following process:

  1. Go to the Drupal project page on Drupal.org: http://drupal.org/project/ drupal.
  2. Find the latest official release of Drupal 7 and click on the Download link. The release will be named 7.0 or similar.
  3. Your browser will ask whether you want to download or Open the file. Make sure to download it to your computer.
  4. The file you downloaded is a .tar.gz file, which is a compressed archive similar to a .zip file. You will need to extract the files from this archive onto your computer.

    If your computer doesn’t already have a program that can open .tar.gz files, try 7-Zip, an open source application that easily handles these files. You can download 7-Zip from http://www.7-zip.org.

  5. After you have extracted the files, you will need to copy them to your web server’s document root.
  6. You are now ready to start the installation process. Simply navigate to http://yoursite.com/install.php.

Let’s step through the installation process in detail now.

Selecting an installation profile

The first step in the installation process is selecting an installation profile. Drupal prompts you with a screen asking for which installation profile you want to use during the installation:

Installing Drupal 7

By default, Drupal comes with two installation profiles, the Standard profile and the Minimal profile. Custom distributions may come with additional profiles.

Minimal profile

The Minimal profile installs a basic configuration of Drupal with only the required functionality enabled. This profile is even more minimal than the base Drupal 6 installation.

This profile should be used if you are very familiar with setting up Drupal and don’t want some of the additional features activated in the Standard profile.

Standard profile

The Standard Drupal profile installs and activates several commonly-used features to make your Drupal site more useful immediately. These additional features include:

  • Search form installed on the left sidebar.
  • Powered by Drupal block enabled in the footer.
  • A basic page content type is automatically created to store static content on your site.
  • An article content type is automatically created to store time-specific content. The article content type replaces the story content type from Drupal 6.
  • Both content types are set up with RDF capabilities.
  • User profiles have pictures enabled by default. Profile pictures can have a maximum size of 1024×1024 pixels and be up to 800 KB when they are uploaded. They will be displayed using the thumbnail image style.
  • A taxonomy called Tags is created to allow easy categorization of content on your site.
  • The article content type is enhanced by adding an image field, which allows PNG, GIF, and JPG files to be attached to the article.
  • An administrator role is created that has all permissions activated for it. As new modules are activated, the administrator role will automatically be updated with the permissions for the new module.
  • The Seven theme is activated for the administration section of the site.

In most cases, you will want to start with the Standard installation profile, especially if you are setting up an entirely new site or if you are new to Drupal.

Language selection

The next step in the installation is choosing the language with which you want to install Drupal. By default, Drupal only includes an English installer. If you want to want to install Drupal in another language, you will need to download a translation from Drupal.org. A complete list of translations is available at http://drupal.org/ project/translations. After you download the translation you want to use, you will need to unpack the translation and copy it to your document folder. The process to unpack and copy the files is similar to the process we used when we unpacked and copied the core Drupal files to your server.

For now, we will continue with the English installation.

Requirements check

Drupal will now check the requirements of your server to ensure that it meets the minimum requirements to run Drupal and to ensure that everything is ready for the installation to proceed.

The requirements check will appear similar to the following:

Installing Drupal 7

If Drupal does discover any problems, it will give you information about how to correct the problem. In our case, it looks like we forgot to set up our settings file. The settings file tells Drupal which database to connect to as well as the connection information. To create a settings file, navigate to your document root and then navigate to the sites/default folder. Copy the default.settings.php file to settings.php. You do not need to change any of the information within the file.

After you have corrected any problems, click on the proceed with the installation link. Drupal will re-evaluate the requirements and let you know if anything else needs to be changed.

This screen has been enhanced in Drupal 7 to provide much more information about your current server settings.

Database configuration

The next step in installing Drupal is configuring the database where Drupal will store the content and configuration information for your site. The functionality of this screen has also been enhanced in Drupal 7.

Installing Drupal 7

The key difference is that Drupal 7 will automatically check which types of databases are available to you based on your server setup. Then, it will only allow you to select a database which will work.

If you want to run Drupal using a different database server than your web server, you can use the ADVANCED OPTIONS link to configure the database server and port. You can also use ADVANCED OPTIONS if you are setting up multiple sites within a single database.

For a Standard installation, enter the name of your database as well as the username and password for the database. This functionality remains the same as in Drupal 6.

You will need to create a database outside of the Drupal installation. The actual steps for creating a new database vary depending on your website host. Many hosts have installed phpMyAdmin, which allows you to manage your databases with an easy-to-use web-based interface.

If you use phpMyAdmin to create your database, you will need to log in to phpMyAdmin and create a database. You can create a new database from the home page, which should appear similar to the following screenshot depending on the version of phpMyAdmin you are using:

Installing Drupal 7

You can create a new user for the database in the Privileges tab.

After you have entered your database settings, click on the Save and continue button. Drupal will now configure the database and set up your site.

As the installation proceeds, Drupal will display its progress.

Installing Drupal 7

The installation may take several minutes to complete.

In the unlikely event that you have problems during the installation, try emptying the database, increasing the amount of memory available to Drupal, and increasing the maximum execution time for a PHP script. You can increase the available memory and execution time in your php.ini file.

The relevant sections in php.ini to control memory and execution time are shown in the following screenshot:

Installing Drupal 7

LEAVE A REPLY

Please enter your comment!
Please enter your name here