Drupal – General optimization

This article is optimized for Drupal 7

Drupal is one of the most popular content management systems. It can handle small and large websites equally well, with a little optimization. This article will help you prepare your CMS to handle large traffic without losing on speed.

The first part of this article will show you standard optimization techniques, suitable for every hosting, even if you are not using the caching options.

Only when you have completed the general optimization, you can proceed to the second part of the article, which shows you how your CMS can benefit from the Performance hosting tools.

IN THIS ARTICLE:

Use the Drupal cache

Enabled by default for Drupal 8

Activate it in the backend of Drupal like so:

  1. Log in with your Drupal admin areaLog in Drupal admin
  2. Click on Configuration at the top of the admin barConfiguration
  3. Click on Performance in the Development sectionDevelopment > performance
  4. Here check the following:
    1. Cache pages for anonymous users
    2. Cache blocks

    Caching

  5. Click on Save configurationsave configuration

Activate APC

WARNING: Do not activate APC if you are going to use the optional caching Redis add-on!

(Do not do the changes for APC in settings.php – do it in the backend).

  1. Activate APC in the control panel. APC is available for PHP 5.4 and lower
    1. Log in the control panel
    2. Follow My Products >> Web hosting >> Hosting details
    3. From the left-hand panel go to PHP settingsPHP settings
    4. You are now in the Overview. Check the PHP version.
    5. Switch to the ON/Off tab.
    6. Switch on apc.Switch on APCU
    7. PHP changes take time. To check if your changes took place switch to the PHP info tab. Look for the APC section. If it is there, you have activated APC successfully.
      APCu enabled?
  2. Click on the link to download Drupal APC and install in /sites/all/modules/.download Drupal APC
    in /sites/all/modules/
    in /sites/all/modules/
  3. Enable APC from the Modules section of your backend.Modules
    Enable APC from the Modules section
  4. Now add the following code to the settings.php file.

This file can be found in /sites/default/settings.php (from the root of your Drupal installation).

 /**
Add APC Caching.
 */
 $conf['cache_backends'][] = 'sites/all/modules/apc/drupal_apc_cache.inc';
 $conf['cache_class_cache'] = 'DrupalAPCCache';
 $conf['cache_class_cache_bootstrap'] = 'DrupalAPCCache';
 //$conf['apc_show_debug'] = TRUE;  // Remove the slashes to use debug mode.

/sites/default/settings.php
/sites/default/settings.php
settings.php file

Now check if the site still works. If yes, proceed to the next step.
Add the following code to the settings.php file:

 $conf['page_cache_without_database'] = TRUE;
 $conf['page_cache_invoke_hooks'] = FALSE;

settings.php file

This ensures that page caching also calls for APC.

Double check if the site still works.

Use the Boost module

  1. Prepare
    1. Enable Clean URLs in Configuration >> SEARCH AND METADATA >> Clean URLsConfiguration
      Search and metadata
      Clean URLs
    2. Make sure Cronjobs are not disabled.
  2. Download the Drupal Boost module and install it in your Drupal folder, in sites/all/modules.Download the Drupal Boost module
    sites/all/modules
    sites/all/modules
  3. Enable the module from the Modules section of your backend.Modules Enable the module
  4. Follow Configuration >> Development >> Performance and uncheck Cache pages for anonymous users.Configuration
    Development > performance
    caching
    Save configuration
  5. Make sure the cache directory in Configuration > System > Boost > File System has 755 permissions.Configuration
    System > boost
    File system
    /drupal/cache
  6. .htaccess
    1. Backup your original .htaccess file..htaccess file
    2. Copy the custom generated .htaccess rule from Configuration > System > Boost > .htaccess > .htaccess Generation and copy them into your .htaccess file. – make sure you paste the segment in the correct place – see the instructions bellow the generated text.Configuration
      System > boost
      .htaccess > .htaccess Generation
      Generated rules
      .htaccess file.
    3. Check if the website still works. If not, restore your .htaccess file and try again.
  7. Congrats, your Drupal is boosted. If you feel like you need to troubleshoot the Boost module installation, click on the link.

This shows a flow Drupal Boost will add:

Flow Drupal Boost

Client optimization

The client can proactively work with multiple subdomains to load media faster. When a client downloads data too slow, it does not hurt to see with the Firefox plugin Firebug what exactly is to be loaded. If there are, for example, more than 50 separate items are to be loaded, it may be appropriate to point out the following:

Simultaneous Browser Connections
  • IE7: 2 simultaneous connections
  • IE8: 6 simultaneous connections
  • Google Chrome: 6 simultaneous connections
  • Mozilla Firefox: 8 simultaneous connections

This means that when there are 50 items to be loaded, it will slow down the loading time, considering all the actions put on hold until a connection is made available. Only then will the next element of your site be loaded and so on until all items are loaded. Of course the speed depends on the size, too.

Ways to speed it up:
  • Using CSS sprites
  • Load of elements through individual (sub) domains
CSS sprites:

A CSS sprite can counteract this because then there is only one image file to be loaded, resulting in fewer connections are required and often the total size can be reduced.

Click on the link for more information on CSS sprites

Use of (sub) domains in order to load into elements:

A second way to increase the loading time in your code is, for example, by using multiple sub-domains. Your browser limits the number of concurrent connections per domain, but the browser will see domainname.be, css.domainname.be, images.domainname.be and consider all these as a separate domain, which gives you a higher number of simultaneous connections.

For example, by having the images be downloaded using images.domeinnaam.be and css files via css.domeinnaam.be, you can speed up the loading time because – files will run simultaneously with the connections bypassing your browser’s limitations. With this method you can actually realize three times as many simultaneous connections.

Install Aggregate Cache

  1. Prepare
    • CLEAN URLs must be enabled.
      • Enable in Search & Metadata >> Clean URLsClean URLs
    • CSS / Javascript Aggregation must be enabled.
      • CSS / Javascript Aggregation is in the Configuration >> Development, under Performance. Make sure you tick the following:
        1. Aggregate and compress CSS files.
        2. Aggregate JavaScript files.Configuration
          Development > performance
          Bandwidth optimization
  2. Download and install
    1. Download Aggregate Cache by clicking on the link.Download Aggregate Cache
    2. Install in /sites/all/modules/sites/all/modules
      /sites/all/modules
    3. Enable the module from the Modules section of your backend.Modules
      Enable the module

Manage Render blocking resources.

Do the adjustments below to make the browser start rendering faster, and the load time to decrease significantly.

Move Javascript location

Place Javascript in the footer of the website so that it will be loaded later in the process (after the page is largely rendered)

Javascript

CSS inline

Inline only the most critical CSS code in the theme files and leave the rest load asynchronously via LoadCSS (refer to this https://github.com/filamentgroup/loadCSS)

CSS inline

Using async/defer

The module allows for critical JavaScript code to be put inline.

  1. Download the “Magic” module by clicking on the link.Download the "Magic" module
  2. Install in /sites/all/modules/sites/all/modules
    /sites/all/modules
  3. Enable the module from the Modules section of your backend.Modules
    Enable the module

A couple more tweaking options are:

  • Concatenation of files (such as CSS files)
  • Put essentials (of js, css and others) inline the PHP files.
  • CSS Spriting
Updated on 8 March 2020

Was this article helpful?

Related Articles

Comments

Comments are closed.