You can add third-party contributed modules to extend or alter Drupal's behavior.
Table of contents:
In a nutshell
1. Download the module and extract it in the folder sites/all/modules/contrib
. It is recommended to place all third-party modules in a subfolder called contrib
.
2. Go to the Module page at Administer > Modules (http://example.com/admin/modules) and enable it.
3. Read the module's documentation (readme file or on-line here on drupal.org) for further configuration instructions.
Note: The drush commands drush dl module_name
and drush en module_name
offer probably the fastest way installing modules.
Choose the module file
Choose the right release. When you have chosen a module to add to your site, you must choose which release to use. The version must be compatible with the version of Drupal you are using. Note that 'Development releases' are versions of the module that are in an active stage of development. They may be written for a previous/current/future version of Drupal, are considered unstable, and should be handled with care. 'Recommended releases' are stable and ready to use.
Upload the module
There are two basic ways to upload module files to a Drupal 7 site:
- Through the Drupal user interface
- Manually on the server
The first option will not work on many types of servers, but may be a more user-friendly choice on servers where it does work. The second option is always available.
Option 1: Upload the module through the Drupal interface
- Navigate to the install page. Navigate to Modules > List (tab), or
http://example.com/admin/modules
, and click the link 'Install new module.' (You must have theUpdate manager module enabled to see this link. For those new to Drupal, go to "Modules", find "Update Manager," put a check mark in the box by "Update Manager" and then click "Save" at the bottom of the page. You should now have a link to install new modules.) - Follow the prompts. You will be prompted to provide either the URL to the download, or to upload the .tar.gz or .zip file from your local computer. Click 'Install', and the Update manager will copy the files into your
sites/all/modules
folder. (See Update manager for more information about what that core module can do.) The next screen gives you two links. Click 'Enable newly added modules' and skip down to the 'Enable and configure' section.
If your site asks for your FTP username and password, it is referring to the username and password to access your site, not drupal.org
A note about FTP: If FTP is not enabled for your server, you may receive an error message. Drupal will not be able to diagnose the problem, only tell you that there is one. It's up to you to determine whether your server is properly configured for FTP.
Option 2: Upload the module manually
Please note: Especially for sites with a lot of additional modules, many people have begun to further divide the modules folder, to help stay organized. A typical way of doing this would be:
sites/all/modules/contrib
for all contributed modules.sites/all/modules/custom
for all custom modules.sites/all/modules/features
if you have additional modules that were created usingFeatures.
Enable and configure
- Read the directions. If the module has an installation file (usually INSTALL.txt and/or README.txt), read it for specific instructions. There are modules that require special treatment, and even modules that depend on other downloaded files to function properly. Sometimes the README file has no .txt extension. If you double-click it, your computer won't know what program to use. In that case, open a text editor first, and then open the file using the editor's 'file open' command.
- Enable the module. Navigate to Administer > Modules or
http://example.com/admin/modules
. Check the 'Enabled' box next to the module and then click the 'Save Configuration' button at the bottom. Note: If you are updating an existing module, you'll need to click 'update script' at the top of the page or load http://www.example.com/update.php
, then click 'Continue' (after making a backup of both your database and 'sites' folder). - Set up permissions. Some modules will require that you change permissions to get them working. Permissions information may be in the instructions that came with the module. Navigate to Administer > Modules and click on the 'Permissions' button for the desired module. You can also do this on the Permissions page (Administer > People > Permissions). Scroll down to see if the module appears in the list and, if it does, give the appropriate permissions to desired roles.
- Adjust settings. Most modules will have some type of settings page. It will vary from module to module but if not described in the README.txt file, it can usually be located by navigating to (Administer > Modules) and clicking on the 'Configure' link for that module. Not all modules have settings pages.
Please note: You can only have one copy of a module with the same name in each Drupal site. The module's name is determined by the name of the .module
file, not by the name of the directory.
Tip: If you run into problems, search the module's issue queue and the forums. If your problem hasn't already been addressed, post a question or issue and someone will try to help you out.
Tip: To keep up-to-date on any issues and fixes related to your newly installed module(s), you can create a user account on Drupal.org (if you haven't done so already) and then subscribe to the feed of each module you are using.
For a collection of useful materials for module developers, see Module Development with Drupal.
sites/all/modules/
tosites/all/modules/contrib/
then you may encounter errors, perhaps fatal (seen in the browser on your site and at the command line when using drush) as myself and other folks have seen--that they describe here:drupal.org/node/1423374 For me, none of the remedies worked and I still got the PHP fatal error complaining about a file within one of the modules, geofield, so I had to revert back to original path. Comments? – therobyouknow Aug 28 '13 at 15:40