INSTALL.txt

CONTENTS OF THIS FILE
---------------------

 * Requirements and notes
 * Optional server requirements
 * Installation
 * Building and customizing your site
 * Multisite configuration
 * More information

REQUIREMENTS AND NOTES
----------------------

Drupal requires:

- A web server with PHP support, for example:
  - Apache 2.0 (or greater) (http://httpd.apache.org/).
  - Nginx 1.1 (or greater) (http://www.nginx.com/).
- PHP 5.3.5 (or greater) (http://www.php.net/).
- One of the following databases:
  - MySQL 5.0.15 (or greater) (http://www.mysql.com/).
  - MariaDB 5.1.44 (or greater) (http://mariadb.org/). MariaDB is a fully
    compatible drop-in replacement for MySQL.
  - PostgreSQL 8.3 (or greater) (http://www.postgresql.org/).
  - SQLite 3.4.2 (or greater) (http://www.sqlite.org/).

For more detailed information about Drupal requirements, including a list of
PHP extensions and configurations that are required, see "System requirements"
(http://drupal.org/requirements) in the Drupal.org online documentation.

For detailed information on how to configure a test server environment using a
variety of operating systems and web servers, see "Local server setup"
(http://drupal.org/node/157602) in the Drupal.org online documentation.

Note that all directories mentioned in this document are always relative to the
directory of your Drupal installation, and commands are meant to be run from
this directory (except for the initial commands that create that directory).

OPTIONAL SERVER REQUIREMENTS
----------------------------

- If you want to use Drupal's "Clean URLs" feature on an Apache web server, you
  will need the mod_rewrite module and the ability to use local .htaccess
  files. For Clean URLs support on IIS, see "Clean URLs with IIS"
  (http://drupal.org/node/3854) in the Drupal.org online documentation.

- If you plan to use XML-based services such as RSS aggregation, you will need
  PHP's XML extension. This extension is enabled by default on most PHP
  installations.

- To serve gzip compressed CSS and JS files on an Apache web server, you will
  need the mod_headers module and the ability to use local .htaccess files.

- Some Drupal functionality (e.g., checking whether Drupal and contributed
  modules need updates, RSS aggregation, etc.) require that the web server be
  able to go out to the web and download information. If you want to use this
  functionality, you need to verify that your hosting provider or server
  configuration allows the web server to initiate outbound connections. Most web
  hosting setups allow this.

INSTALLATION
------------

1. Download and extract Drupal.

   You can obtain the latest Drupal release from http://drupal.org -- the files
   are available in .tar.gz and .zip formats and can be extracted using most
   compression tools.

   To download and extract the files, on a typical Unix/Linux command line, use
   the following commands (assuming you want version x.y of Drupal in .tar.gz
   format):

     wget http://drupal.org/files/projects/drupal-x.y.tar.gz
     tar -zxvf drupal-x.y.tar.gz

   This will create a new directory drupal-x.y/ containing all Drupal files and
   directories. Then, to move the contents of that directory into a directory
   within your web server's document root or your public HTML directory,
   continue with this command:

     mv drupal-x.y/* drupal-x.y/.htaccess /path/to/your/installation

2. Optionally, download a translation.

   By default, Drupal is installed in English, and further languages may be
   installed later. If you prefer to install Drupal in another language
   initially:

   - Download a translation file for the correct Drupal version and language
     from the translation server: http://localize.drupal.org/translate/downloads

   - Place the file into the dedicated translations directory. By default this
     directory is:

       sites/default/files/translations/

     If the directory doesn't exist, you should create it. Make sure your file
     is named drupal-VERSION.LANGCODE.po (for example, the German
     translation for Drupal 8.0 should be named drupal-8.0.de.po).

   For detailed instructions, visit http://drupal.org/localize

3. Create the Drupal database.

   Because Drupal stores all site information in a database, the Drupal
   installer will attempt to create this database for you. If you create the
   database manually, you must grant Drupal certain database privileges (such as
   the ability to create tables).  For details, consult INSTALL.mysql.txt,
   INSTALL.pgsql.txt, or INSTALL.sqlite.txt. You may also need to consult your
   web hosting provider for instructions specific to your web host.

   Take note of the username, password, database name, and hostname as you
   create the database. You will enter this information during the install.

4. Run the install script.

   To run the install script, point your browser to the base URL of your
   website (e.g., http://www.example.com).

   You will be guided through several screens to set up the database, add the
   site maintenance account (the first user, also known as user/1), and provide
   basic web site settings.

   During installation, several files and directories need to be created, which
   the install script will try to do automatically. However, on some hosting
   environments, manual steps are required, and the install script will tell
   you that it cannot proceed until you fix certain issues. This is normal and
   does not indicate a problem with your server.

   The most common steps you may need to perform are:

   a. Missing files directory.

      The install script will attempt to create a file storage directory in
      the default location at sites/default/files (the location of the files
      directory may be changed after Drupal is installed).

      If auto-creation fails, you can make it work by changing permissions on
      the sites/default directory so that the web server can create the files
      directory within it for you. (If you are creating a multisite
      installation, substitute the correct sites directory for sites/default;
      see the Multisite Configuration section of this file, below.)

      For example, on a Unix/Linux command line, you can grant everyone
      (including the web server) permission to write to the sites/default
      directory with this command:

        chmod a+w sites/default

      Be sure to set the permissions back after the installation is finished!
      Sample command:

        chmod go-w sites/default

      Alternatively, instead of allowing the web server to create the files
      directory for you as described above, you can create it yourself. Sample
      commands from a Unix/Linux command line:

        mkdir sites/default/files
        chmod a+w sites/default/files

   b. Missing settings file.

      Drupal will try to automatically create a settings.php configuration file,
      which is normally in the directory sites/default (to avoid problems when
      upgrading, Drupal is not packaged with this file). If auto-creation fails,
      you will need to create this file yourself, using the file
      sites/default/default.settings.php as a template.

      For example, on a Unix/Linux command line, you can make a copy of the
      default.settings.php file with the command:

        cp sites/default/default.settings.php sites/default/settings.php

      Next, grant write privileges to the file to everyone (including the web
      server) with the command:

        chmod a+w sites/default/settings.php

      Be sure to set the permissions back after the installation is finished!
      Sample command:

        chmod go-w sites/default/settings.php

   c. Write permissions after install.

      The install script will attempt to write-protect the settings.php file and
      the sites/default directory after saving your configuration. If this
      fails, you will be notified, and you can do it manually. Sample commands
      from a Unix/Linux command line:

        chmod go-w sites/default/settings.php
        chmod go-w sites/default

5. Verify that the site is working.

   When the install script finishes, you will be logged in with the site
   maintenance account on a "Welcome" page. If the default Drupal theme is not
   displaying properly and links on the page result in "Page Not Found" errors,
   you may be experiencing problems with clean URLs. Visit
   http://drupal.org/getting-started/clean-urls to troubleshoot.

6. Change file system storage settings (optional).

   The files directory created in step 4 is the default file system path used to
   store all uploaded files, as well as some temporary files created by
   Drupal. After installation, you can modify the file system path to store
   uploaded files in a different location.

   It is not necessary to modify this path, but you may wish to change it if:

   - Your site runs multiple Drupal installations from a single codebase (modify
     the file system path of each installation to a different directory so that
     uploads do not overlap between installations).

   - Your site runs on a number of web servers behind a load balancer or reverse
     proxy (modify the file system path on each server to point to a shared file
     repository).

   - You want to restrict access to uploaded files.

   To modify the file system path:

   a. Ensure that the new location for the path exists and is writable by the
      web server. For example, to create a new directory named uploads and grant
      write permissions, use the following commands on a Unix/Linux command
      line:

        mkdir uploads
        chmod a+w uploads

   b. Navigate to Administration > Configuration > Media > File system, and
      enter the desired path. Note that if you want to use private file storage,
      you need to first enter the path for private files and save the
      configuration, and then change the "Default download method" setting and
      save again.

   Changing the file system path after files have been uploaded may cause
   unexpected problems on an existing site. If you modify the file system path
   on an existing site, remember to copy all files from the original location
   to the new location.

7. Revoke documentation file permissions (optional).

   Some administrators suggest making the documentation files, especially
   CHANGELOG.txt, non-readable so that the exact version of Drupal you are
   running is slightly more difficult to determine. If you wish to implement
   this optional security measure, from a Unix/Linux command line you can use
   the following command:

     chmod a-r CHANGELOG.txt

   Note that the example only affects CHANGELOG.txt. To completely hide all
   documentation files from public view, repeat this command for each of the
   Drupal documentation files in the installation directory, substituting the
   name of each file for CHANGELOG.txt in the example.

   For more information on setting file permissions, see "Modifying Linux,
   Unix, and Mac file permissions" (http://drupal.org/node/202483) or
   "Modifying Windows file permissions" (http://drupal.org/node/202491) in the
   Drupal.org online documentation.

8. Set up independent "cron" maintenance jobs.

   Many Drupal modules have tasks that must be run periodically, including the
   Search module (building and updating the index used for keyword searching),
   the Aggregator module (retrieving feeds from other sites), and the System
   module (performing routine maintenance and pruning of database tables). These
   tasks are known as "cron maintenance tasks", named after the Unix/Linux
   "cron" utility.

   When you install Drupal, its built-in cron feature is enabled, which
   automatically runs the cron tasks periodically, triggered by people visiting
   pages of your site. You can configure the built-in cron feature by navigating
   to Administration > Configuration > System > Cron.

   It is also possible to run the cron tasks independent of site visits; this is
   recommended for most sites. To do this, you will need to set up an automated
   process to visit the page /cron on your site, which executes the cron
   tasks.

   The URL of the cron page requires a "cron key" to protect against
   unauthorized access. Your site's cron key is automatically generated during
   installation and is specific to your site. The full URL of the page, with the
   cron key, is available in the "Cron maintenance tasks" section of the Status
   report page at Administration > Reports > Status report.

   As an example for how to set up this automated process, you can use the
   crontab utility on Unix/Linux systems. The following crontab line uses the
   wget command to visit the cron page, and runs each hour, on the hour:

   0 * * * * wget -O - -q -t 1 http://example.com/cron/YOURKEY

   Replace the text "http://example.com/cron/YOURKEY" in the example with the
   full URL displayed under "Cron maintenance tasks" on the "Status report"
   page.

   More information about cron maintenance tasks is available at
   http://drupal.org/cron, and sample cron shell scripts can be found in the
   scripts/ directory. (Note that these scripts must be customized like the
   above example, to add your site-specific cron key and domain name.)

BUILDING AND CUSTOMIZING YOUR SITE
----------------------------------

A new installation of Drupal defaults to a very basic configuration. To extend
your site, you use "modules" and "themes". A module is a plugin that adds
functionality to Drupal, while a theme changes the look of your site. The core
of Drupal provides several optional modules and themes, and you can download
more at http://drupal.org/project/modules and http://drupal.org/project/themes

Do not mix downloaded or custom modules and themes with Drupal's core modules
and themes. Drupal's modules and themes are located in the top-level modules and
themes directories, while the modules and themes you add to Drupal are normally
placed in the /modules and /themes directories. If you run a multisite
installation, you can also place modules and themes in the site-specific
directories -- see the Multisite Configuration section, below.

Never edit Drupal's core modules and themes; instead, use the hooks available in
the Drupal API. To modify the behavior of Drupal, develop a module as described
at http://drupal.org/developing/modules. To modify the look of Drupal, create a
subtheme as described at http://drupal.org/node/225125, or a completely new
theme as described at http://drupal.org/documentation/theme

MULTISITE CONFIGURATION
-----------------------

A single Drupal installation can host several Drupal-powered sites, each with
its own individual configuration.

Additional site configurations are created in subdirectories within the 'sites'
directory. Each subdirectory must have a 'settings.php' file, which specifies
the configuration settings. The easiest way to create additional sites is to
copy the 'default' directory and modify the 'settings.php' file as appropriate.
The new directory name is constructed from the site's URL. The configuration for
www.example.com could be in 'sites/example.com/settings.php' (note that 'www.'
should be omitted if users can access your site at http://example.com/).

Sites do not have to have a different domain. You can also use subdomains and
subdirectories for Drupal sites. For example, example.com, sub.example.com, and
sub.example.com/site3 can all be defined as independent Drupal sites. The setup
for a configuration such as this would look like the following:

  sites/default/settings.php
  sites/example.com/settings.php
  sites/sub.example.com/settings.php
  sites/sub.example.com.site3/settings.php

When searching for a site configuration (for example www.sub.example.com/site3),
Drupal will search for configuration files in the following order, using the
first configuration it finds:

  sites/www.sub.example.com.site3/settings.php
  sites/sub.example.com.site3/settings.php
  sites/example.com.site3/settings.php
  sites/www.sub.example.com/settings.php
  sites/sub.example.com/settings.php
  sites/example.com/settings.php
  sites/default/settings.php

If you are installing on a non-standard port, the port number is treated as the
deepest subdomain. For example: http://www.example.com:8080/ could be loaded
from sites/8080.www.example.com/. The port number will be removed according to
the pattern above if no port-specific configuration is found, just like a real
subdomain.

Each site configuration can have its own site-specific modules and themes in
addition to those installed in the standard 'modules' and 'themes' directories.
To use site-specific modules or themes, simply create a 'modules' or 'themes'
directory within the site configuration directory. For example, if
sub.example.com has a custom theme and a custom module that should not be
accessible to other sites, the setup would look like this:

  sites/sub.example.com/
    settings.php
    themes/custom_theme
    modules/custom_module

NOTE: for more information about multiple virtual hosts or the configuration
settings, consult http://drupal.org/getting-started/6/install/multi-site

For more information on configuring Drupal's file system path in a multisite
configuration, see step 6 above.

MORE INFORMATION
----------------

- See the Drupal.org online documentation:
  http://drupal.org/documentation

- For a list of security announcements, see the "Security advisories" page at
  http://drupal.org/security (available as an RSS feed). This page also
  describes how to subscribe to these announcements via e-mail.

- For information about the Drupal security process, or to find out how to
  report a potential security issue to the Drupal security team, see the
  "Security team" page at http://drupal.org/security-team

- For information about the wide range of available support options, visit
  http://drupal.org and click on Community and Support in the top or bottom
  navigation.

File

drupal/core/INSTALL.txt
View source
  1. CONTENTS OF THIS FILE
  2. ---------------------
  3. * Requirements and notes
  4. * Optional server requirements
  5. * Installation
  6. * Building and customizing your site
  7. * Multisite configuration
  8. * More information
  9. REQUIREMENTS AND NOTES
  10. ----------------------
  11. Drupal requires:
  12. - A web server with PHP support, for example:
  13. - Apache 2.0 (or greater) (http://httpd.apache.org/).
  14. - Nginx 1.1 (or greater) (http://www.nginx.com/).
  15. - PHP 5.3.5 (or greater) (http://www.php.net/).
  16. - One of the following databases:
  17. - MySQL 5.0.15 (or greater) (http://www.mysql.com/).
  18. - MariaDB 5.1.44 (or greater) (http://mariadb.org/). MariaDB is a fully
  19. compatible drop-in replacement for MySQL.
  20. - PostgreSQL 8.3 (or greater) (http://www.postgresql.org/).
  21. - SQLite 3.4.2 (or greater) (http://www.sqlite.org/).
  22. For more detailed information about Drupal requirements, including a list of
  23. PHP extensions and configurations that are required, see "System requirements"
  24. (http://drupal.org/requirements) in the Drupal.org online documentation.
  25. For detailed information on how to configure a test server environment using a
  26. variety of operating systems and web servers, see "Local server setup"
  27. (http://drupal.org/node/157602) in the Drupal.org online documentation.
  28. Note that all directories mentioned in this document are always relative to the
  29. directory of your Drupal installation, and commands are meant to be run from
  30. this directory (except for the initial commands that create that directory).
  31. OPTIONAL SERVER REQUIREMENTS
  32. ----------------------------
  33. - If you want to use Drupal's "Clean URLs" feature on an Apache web server, you
  34. will need the mod_rewrite module and the ability to use local .htaccess
  35. files. For Clean URLs support on IIS, see "Clean URLs with IIS"
  36. (http://drupal.org/node/3854) in the Drupal.org online documentation.
  37. - If you plan to use XML-based services such as RSS aggregation, you will need
  38. PHP's XML extension. This extension is enabled by default on most PHP
  39. installations.
  40. - To serve gzip compressed CSS and JS files on an Apache web server, you will
  41. need the mod_headers module and the ability to use local .htaccess files.
  42. - Some Drupal functionality (e.g., checking whether Drupal and contributed
  43. modules need updates, RSS aggregation, etc.) require that the web server be
  44. able to go out to the web and download information. If you want to use this
  45. functionality, you need to verify that your hosting provider or server
  46. configuration allows the web server to initiate outbound connections. Most web
  47. hosting setups allow this.
  48. INSTALLATION
  49. ------------
  50. 1. Download and extract Drupal.
  51. You can obtain the latest Drupal release from http://drupal.org -- the files
  52. are available in .tar.gz and .zip formats and can be extracted using most
  53. compression tools.
  54. To download and extract the files, on a typical Unix/Linux command line, use
  55. the following commands (assuming you want version x.y of Drupal in .tar.gz
  56. format):
  57. wget http://drupal.org/files/projects/drupal-x.y.tar.gz
  58. tar -zxvf drupal-x.y.tar.gz
  59. This will create a new directory drupal-x.y/ containing all Drupal files and
  60. directories. Then, to move the contents of that directory into a directory
  61. within your web server's document root or your public HTML directory,
  62. continue with this command:
  63. mv drupal-x.y/* drupal-x.y/.htaccess /path/to/your/installation
  64. 2. Optionally, download a translation.
  65. By default, Drupal is installed in English, and further languages may be
  66. installed later. If you prefer to install Drupal in another language
  67. initially:
  68. - Download a translation file for the correct Drupal version and language
  69. from the translation server: http://localize.drupal.org/translate/downloads
  70. - Place the file into the dedicated translations directory. By default this
  71. directory is:
  72. sites/default/files/translations/
  73. If the directory doesn't exist, you should create it. Make sure your file
  74. is named drupal-VERSION.LANGCODE.po (for example, the German
  75. translation for Drupal 8.0 should be named drupal-8.0.de.po).
  76. For detailed instructions, visit http://drupal.org/localize
  77. 3. Create the Drupal database.
  78. Because Drupal stores all site information in a database, the Drupal
  79. installer will attempt to create this database for you. If you create the
  80. database manually, you must grant Drupal certain database privileges (such as
  81. the ability to create tables). For details, consult INSTALL.mysql.txt,
  82. INSTALL.pgsql.txt, or INSTALL.sqlite.txt. You may also need to consult your
  83. web hosting provider for instructions specific to your web host.
  84. Take note of the username, password, database name, and hostname as you
  85. create the database. You will enter this information during the install.
  86. 4. Run the install script.
  87. To run the install script, point your browser to the base URL of your
  88. website (e.g., http://www.example.com).
  89. You will be guided through several screens to set up the database, add the
  90. site maintenance account (the first user, also known as user/1), and provide
  91. basic web site settings.
  92. During installation, several files and directories need to be created, which
  93. the install script will try to do automatically. However, on some hosting
  94. environments, manual steps are required, and the install script will tell
  95. you that it cannot proceed until you fix certain issues. This is normal and
  96. does not indicate a problem with your server.
  97. The most common steps you may need to perform are:
  98. a. Missing files directory.
  99. The install script will attempt to create a file storage directory in
  100. the default location at sites/default/files (the location of the files
  101. directory may be changed after Drupal is installed).
  102. If auto-creation fails, you can make it work by changing permissions on
  103. the sites/default directory so that the web server can create the files
  104. directory within it for you. (If you are creating a multisite
  105. installation, substitute the correct sites directory for sites/default;
  106. see the Multisite Configuration section of this file, below.)
  107. For example, on a Unix/Linux command line, you can grant everyone
  108. (including the web server) permission to write to the sites/default
  109. directory with this command:
  110. chmod a+w sites/default
  111. Be sure to set the permissions back after the installation is finished!
  112. Sample command:
  113. chmod go-w sites/default
  114. Alternatively, instead of allowing the web server to create the files
  115. directory for you as described above, you can create it yourself. Sample
  116. commands from a Unix/Linux command line:
  117. mkdir sites/default/files
  118. chmod a+w sites/default/files
  119. b. Missing settings file.
  120. Drupal will try to automatically create a settings.php configuration file,
  121. which is normally in the directory sites/default (to avoid problems when
  122. upgrading, Drupal is not packaged with this file). If auto-creation fails,
  123. you will need to create this file yourself, using the file
  124. sites/default/default.settings.php as a template.
  125. For example, on a Unix/Linux command line, you can make a copy of the
  126. default.settings.php file with the command:
  127. cp sites/default/default.settings.php sites/default/settings.php
  128. Next, grant write privileges to the file to everyone (including the web
  129. server) with the command:
  130. chmod a+w sites/default/settings.php
  131. Be sure to set the permissions back after the installation is finished!
  132. Sample command:
  133. chmod go-w sites/default/settings.php
  134. c. Write permissions after install.
  135. The install script will attempt to write-protect the settings.php file and
  136. the sites/default directory after saving your configuration. If this
  137. fails, you will be notified, and you can do it manually. Sample commands
  138. from a Unix/Linux command line:
  139. chmod go-w sites/default/settings.php
  140. chmod go-w sites/default
  141. 5. Verify that the site is working.
  142. When the install script finishes, you will be logged in with the site
  143. maintenance account on a "Welcome" page. If the default Drupal theme is not
  144. displaying properly and links on the page result in "Page Not Found" errors,
  145. you may be experiencing problems with clean URLs. Visit
  146. http://drupal.org/getting-started/clean-urls to troubleshoot.
  147. 6. Change file system storage settings (optional).
  148. The files directory created in step 4 is the default file system path used to
  149. store all uploaded files, as well as some temporary files created by
  150. Drupal. After installation, you can modify the file system path to store
  151. uploaded files in a different location.
  152. It is not necessary to modify this path, but you may wish to change it if:
  153. - Your site runs multiple Drupal installations from a single codebase (modify
  154. the file system path of each installation to a different directory so that
  155. uploads do not overlap between installations).
  156. - Your site runs on a number of web servers behind a load balancer or reverse
  157. proxy (modify the file system path on each server to point to a shared file
  158. repository).
  159. - You want to restrict access to uploaded files.
  160. To modify the file system path:
  161. a. Ensure that the new location for the path exists and is writable by the
  162. web server. For example, to create a new directory named uploads and grant
  163. write permissions, use the following commands on a Unix/Linux command
  164. line:
  165. mkdir uploads
  166. chmod a+w uploads
  167. b. Navigate to Administration > Configuration > Media > File system, and
  168. enter the desired path. Note that if you want to use private file storage,
  169. you need to first enter the path for private files and save the
  170. configuration, and then change the "Default download method" setting and
  171. save again.
  172. Changing the file system path after files have been uploaded may cause
  173. unexpected problems on an existing site. If you modify the file system path
  174. on an existing site, remember to copy all files from the original location
  175. to the new location.
  176. 7. Revoke documentation file permissions (optional).
  177. Some administrators suggest making the documentation files, especially
  178. CHANGELOG.txt, non-readable so that the exact version of Drupal you are
  179. running is slightly more difficult to determine. If you wish to implement
  180. this optional security measure, from a Unix/Linux command line you can use
  181. the following command:
  182. chmod a-r CHANGELOG.txt
  183. Note that the example only affects CHANGELOG.txt. To completely hide all
  184. documentation files from public view, repeat this command for each of the
  185. Drupal documentation files in the installation directory, substituting the
  186. name of each file for CHANGELOG.txt in the example.
  187. For more information on setting file permissions, see "Modifying Linux,
  188. Unix, and Mac file permissions" (http://drupal.org/node/202483) or
  189. "Modifying Windows file permissions" (http://drupal.org/node/202491) in the
  190. Drupal.org online documentation.
  191. 8. Set up independent "cron" maintenance jobs.
  192. Many Drupal modules have tasks that must be run periodically, including the
  193. Search module (building and updating the index used for keyword searching),
  194. the Aggregator module (retrieving feeds from other sites), and the System
  195. module (performing routine maintenance and pruning of database tables). These
  196. tasks are known as "cron maintenance tasks", named after the Unix/Linux
  197. "cron" utility.
  198. When you install Drupal, its built-in cron feature is enabled, which
  199. automatically runs the cron tasks periodically, triggered by people visiting
  200. pages of your site. You can configure the built-in cron feature by navigating
  201. to Administration > Configuration > System > Cron.
  202. It is also possible to run the cron tasks independent of site visits; this is
  203. recommended for most sites. To do this, you will need to set up an automated
  204. process to visit the page /cron on your site, which executes the cron
  205. tasks.
  206. The URL of the cron page requires a "cron key" to protect against
  207. unauthorized access. Your site's cron key is automatically generated during
  208. installation and is specific to your site. The full URL of the page, with the
  209. cron key, is available in the "Cron maintenance tasks" section of the Status
  210. report page at Administration > Reports > Status report.
  211. As an example for how to set up this automated process, you can use the
  212. crontab utility on Unix/Linux systems. The following crontab line uses the
  213. wget command to visit the cron page, and runs each hour, on the hour:
  214. 0 * * * * wget -O - -q -t 1 http://example.com/cron/YOURKEY
  215. Replace the text "http://example.com/cron/YOURKEY" in the example with the
  216. full URL displayed under "Cron maintenance tasks" on the "Status report"
  217. page.
  218. More information about cron maintenance tasks is available at
  219. http://drupal.org/cron, and sample cron shell scripts can be found in the
  220. scripts/ directory. (Note that these scripts must be customized like the
  221. above example, to add your site-specific cron key and domain name.)
  222. BUILDING AND CUSTOMIZING YOUR SITE
  223. ----------------------------------
  224. A new installation of Drupal defaults to a very basic configuration. To extend
  225. your site, you use "modules" and "themes". A module is a plugin that adds
  226. functionality to Drupal, while a theme changes the look of your site. The core
  227. of Drupal provides several optional modules and themes, and you can download
  228. more at http://drupal.org/project/modules and http://drupal.org/project/themes
  229. Do not mix downloaded or custom modules and themes with Drupal's core modules
  230. and themes. Drupal's modules and themes are located in the top-level modules and
  231. themes directories, while the modules and themes you add to Drupal are normally
  232. placed in the /modules and /themes directories. If you run a multisite
  233. installation, you can also place modules and themes in the site-specific
  234. directories -- see the Multisite Configuration section, below.
  235. Never edit Drupal's core modules and themes; instead, use the hooks available in
  236. the Drupal API. To modify the behavior of Drupal, develop a module as described
  237. at http://drupal.org/developing/modules. To modify the look of Drupal, create a
  238. subtheme as described at http://drupal.org/node/225125, or a completely new
  239. theme as described at http://drupal.org/documentation/theme
  240. MULTISITE CONFIGURATION
  241. -----------------------
  242. A single Drupal installation can host several Drupal-powered sites, each with
  243. its own individual configuration.
  244. Additional site configurations are created in subdirectories within the 'sites'
  245. directory. Each subdirectory must have a 'settings.php' file, which specifies
  246. the configuration settings. The easiest way to create additional sites is to
  247. copy the 'default' directory and modify the 'settings.php' file as appropriate.
  248. The new directory name is constructed from the site's URL. The configuration for
  249. www.example.com could be in 'sites/example.com/settings.php' (note that 'www.'
  250. should be omitted if users can access your site at http://example.com/).
  251. Sites do not have to have a different domain. You can also use subdomains and
  252. subdirectories for Drupal sites. For example, example.com, sub.example.com, and
  253. sub.example.com/site3 can all be defined as independent Drupal sites. The setup
  254. for a configuration such as this would look like the following:
  255. sites/default/settings.php
  256. sites/example.com/settings.php
  257. sites/sub.example.com/settings.php
  258. sites/sub.example.com.site3/settings.php
  259. When searching for a site configuration (for example www.sub.example.com/site3),
  260. Drupal will search for configuration files in the following order, using the
  261. first configuration it finds:
  262. sites/www.sub.example.com.site3/settings.php
  263. sites/sub.example.com.site3/settings.php
  264. sites/example.com.site3/settings.php
  265. sites/www.sub.example.com/settings.php
  266. sites/sub.example.com/settings.php
  267. sites/example.com/settings.php
  268. sites/default/settings.php
  269. If you are installing on a non-standard port, the port number is treated as the
  270. deepest subdomain. For example: http://www.example.com:8080/ could be loaded
  271. from sites/8080.www.example.com/. The port number will be removed according to
  272. the pattern above if no port-specific configuration is found, just like a real
  273. subdomain.
  274. Each site configuration can have its own site-specific modules and themes in
  275. addition to those installed in the standard 'modules' and 'themes' directories.
  276. To use site-specific modules or themes, simply create a 'modules' or 'themes'
  277. directory within the site configuration directory. For example, if
  278. sub.example.com has a custom theme and a custom module that should not be
  279. accessible to other sites, the setup would look like this:
  280. sites/sub.example.com/
  281. settings.php
  282. themes/custom_theme
  283. modules/custom_module
  284. NOTE: for more information about multiple virtual hosts or the configuration
  285. settings, consult http://drupal.org/getting-started/6/install/multi-site
  286. For more information on configuring Drupal's file system path in a multisite
  287. configuration, see step 6 above.
  288. MORE INFORMATION
  289. ----------------
  290. - See the Drupal.org online documentation:
  291. http://drupal.org/documentation
  292. - For a list of security announcements, see the "Security advisories" page at
  293. http://drupal.org/security (available as an RSS feed). This page also
  294. describes how to subscribe to these announcements via e-mail.
  295. - For information about the Drupal security process, or to find out how to
  296. report a potential security issue to the Drupal security team, see the
  297. "Security team" page at http://drupal.org/security-team
  298. - For information about the wide range of available support options, visit
  299. http://drupal.org and click on Community and Support in the top or bottom
  300. navigation.