Source Module
Source Module source module? a text file containing instruction in particular programming language It is very common that you want to add a new Drupal module to your site. And Drupal has made thi...
Source Module

source module?
a text file containing instruction in particular programming language
It is very common that you want to add a new Drupal module to your site. And Drupal has made this process very easily. However, due to lack of knowledge of the structures Drupal folder, the module is installed in the wrong direction, increasing the cost of future maintenance of your site. Henceforth, we will talk about how to install the Drupal module correctly.
Download Drupal Module Source Code
To install a module, you must download source code, and unzip it. The best place to find the 3rd part module is in Drupal official site: http://drupal.org/project/Modules, There is a huge list of free and useful modules that can be used to set up a powerful Web site.
Upload Drupal module source appropriate directory
Then we come to the most important step – download the code for the correct directory. The that the board "right" mean here? Drupal can recognize the new module if you upload the source code of one of the following directories:
- Drupal) (/ modules /
- Drupal () / sites / all / modules
- Drupal () / sites / site) (/ modules
And each one of above directory has its own purpose.
As a best practice in the use of open-source project, it would be nice to have all your custom code to a place and not play all the basic code of open source projects have been developed. This will reduce maintenance costs when upgrading the code to the next version. For Drupal, the centralized directory is Drupal custom code () / sites.
For the Drupal directory) (/ modules /, this is the place to put the file in Drupal core, you can even install the module from there, we would recommend against it.
And Durpal () / sites /, If you want this module can be used by all sites that host in the instance of Drupal, that would be good to place the source code of Drupal module () / sites / all / modules. And the module installed in Drupal () / sites / site) (/ modules will be available only at the specific site.
Active Drupal Module
You can go Administrator-> Site Building-> modules, module verification of newly installed and save Settings to activate it.
Now, you should be able to use the new module now.
About the Author:
Want to set up a drupal site, find the best drupal hosting with comprehensive Drupal installation tutorials from the recognized affordable web hosting directory
Article Source: ArticlesBase.com – Right Way to Install Drupal Modules