On this page
Upgrade process to Drupal 7
Drupal 7 will no longer be supported after January 5, 2025. Learn more and find resources for Drupal 7 sites
Automated Drush Upgrade
You can use the drush sup command to perform an automated site upgrade to Drupal 7. Consult this page for more information.
Manual Upgrade Steps
Note: DO NOT run install.php at any time during an upgrade. It will empty your content from the database.
- Backup your existing site and database.
- Update Drupal core, modules and themes to the latest releases for your existing Drupal version.
- Log in as user ID 1 (the site maintenance user).
This is the user name that you created during the installation process for your site. - Put your site in maintenance mode
Go to the site maintenance page, select "Off-line" and save the configuration. If you have defined a custom maintenance theme in your settings.php file, comment it out before proceeding. - Change all themes to Garland
Go to the Themes page, enable "Garland" and select it as the default theme. If you have been using a separate theme for administration, select "Garland" for your administration theme as well. If you are using a custom maintenance theme, comment out'maintenance_theme' => 'your theme name'in settings.php. - Disable non-core modules
Go to the Modules page and disable all modules that are not listed under "Core - required" or "Core - optional". It is possible that some modules cannot be disabled, because others depend on them. Repeat this step until all non-core modules are disabled.If you know that you will not re-enable some modules for the target Drupal version and you no longer need their data, then you should uninstall them under the Uninstall tab after disabling them.
You can also use Drush to disable all non-core modules (first save a list of all enabled modules):
drush pml --no-core --type=module --status=enabled --pipe > modules.txt cat modules.txt | xargs drush -y dis cat modules.txt | xargs drush -y en - Remove default settings file
On the command line or in your FTP client, remove the filesites/default/default.settings.php - Remove all old core files and directories
Remove all old core files and directories, except for the 'sites' directory and any custom files you added elsewhere. If you made modifications to files like.htaccessorrobots.txt, you will need to re-apply them from your backup, after the new files are in place. - Remove uninstalled modules
If you uninstalled any modules, remove them from thesites/all/modulesand othersites/*/modulesdirectories. Leave other modules in place, even though they are incompatible with Drupal 7.x. - Download Drupal 7
Download the latest Drupal release of the target version to a directory outside of your web root. Extract the archive and copy the files into your Drupal directory.On a typical Unix/Linux command line, use the following commands to download
and extract:wget http://drupal.org/files/projects/drupal-x.y.tar.gztar -zxvf drupal-x.y.tar.gzThis creates a new directory
drupal-x.y/containing all Drupal files and directories. Copy the files into your Drupal installation directory:cp -R drupal-x.y/* drupal-x.y/.htaccess /path/to/your/installationIf you do not have command line access to your server, download the archive using your web browser, extract it, and then use an FTP client to upload the files to your web root.
- Re-apply modifications to core files
Re-apply any modifications to files such as.htaccessorrobots.txt. - Make your
settings.phpfile writeable
Make yoursettings.phpfile writeable, so that the update process can convert it to the new format. - Run the update script
Runupdate.phpby visitinghttp://www.example.com/update.php(replacewww.example.comwith your domain name). This will update the core database tables.If you are unable to access
update.phpdo the following:- Open
settings.phpwith a text editor. - Find the line that says:
$update_free_access = FALSE; - Change it into:
$update_free_access = TRUE; - Once the upgrade is done,
$update_free_accessmust be reverted toFALSE.
If your update script runs without errors and you can view the home page of your upgraded website but none of your links are working (page not founds when clicking on menus etc) AND you were using clean URLs, go to /?q=admin/config/search/clean-urls and turn off clean URLs.
- Open
- Backup your database
Backup your database after the core upgrade has run. - Upgrade fields
If you are upgrading from Drupal 6 to 7 and were using CCK (and perhaps additional modules) to create fields for your content types, you will need to upgrade the data in those fields as a separate step.
If you have CCK text fields that have no maximum length value, you need to consult https://drupal.org/node/1117028 . Long story short: give them maximum lengths <= 255 before running Migrate Content.
Download the Drupal 7 CCK module, and turn on Content Migration. Go to Structure > Migrate Fields orhttp://www.example.com/admin/structure/content_migratefor a page to walk you through the migration process. There are now several types of fields in core, but not every type. You might need to download Drupal 7 versions of contributed modules to support other types of fields (such as the References module for nodereference fields and/or userreference fields). Learn more about migrating content from CCK to Core Fields. - Update contrib modules and themes
Replace and update your non-core modules and themes, following the procedures at http://drupal.org/node/948216 - Check the Status Report
Go to the Status Report page and verify that everything is working as expected. - Make sure settings.php is secure
Ensure that$update_free_accessisFALSEin settings.php.
Remove write permissions. - Check Drupal Core Modules
Make sure that standard modules from a typical fresh install are engaged. In a Drupal 6 to 7 upgrade, some modules that may not be engaged are: 'Dashboard', 'Contextual Links', 'Overlay', 'Field', 'File', 'Image' and 'Shortcut'. - Remove your site from Maintenance Mode
Go to the Maintenance Mode page and disable the "Put site into maintenance mode" checkbox and save the configuration.
Help improve this page
You can:
- Log in, click Edit, and edit this page
- Log in, click Discuss, update the Page status value, and suggest an improvement
- Log in and create a Documentation issue with your suggestion
Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.