Oliver Davies

Primary tabs

Articles from Oliver Davies

Reroute Email module uses hook_mail_alter() to prevent emails from being sent to users from non-production sites.

At the bottom of settings.php, add the following code:

$local_settings = __DIR__ . '/settings.local.php';if (file_exists($local_settings)) {  include $local_settings;}

I was recently doing some work on a site hosted on Pantheon and came across an issue, for which part of the suggested fix was to ensure that the $base_url variable was explicitly de

Using a file structure similar to this, organise your font files into directories, using the the font name for both the directory name and for the file names.

Tags:

If you use the Features module to manage your Drupal configuration, it can be time consuming to update features through the UI, especially if you are working on a remote server and ne

If you use the Features module to manage your Drupal configuration, it can be time consuming to update features through the UI, especially if you are working on a remote server and ne

How to download different versions of Drupal core using Drush.

Pages