Same filename in this branch
  1. 9 INSTALL.txt
  2. 9 core/INSTALL.txt
Same filename and directory in other branches
  1. 10 core/INSTALL.txt
  2. 8.9.x core/INSTALL.txt
CONTENTS OF THIS FILE
---------------------

 * Quickstart
 * Requirements and notes
 * Optional server requirements
 * Installation
 * Reinstall
 * Building and customizing your site
 * Multisite configuration
 * Multilingual configuration

QUICKSTART
----------------------

Prerequisites:
- PHP 7.4.0 (or greater) (https://php.net).

In the instructions below, replace the version x.y.z with the specific version
you wish to download. Example: 8.6.0.zip. You can find the latest stable version
at https://www.drupal.org/project/drupal.

Download and extract the Drupal package:
- curl -sS https://ftp.drupal.org/files/projects/drupal-x.y.z.zip --output drupal-x.y.z.zip
- unzip drupal-x.y.z.zip
- cd /path/to/drupal-x.y.z
- php core/scripts/drupal quick-start

Wait… installation can take a minute or two. A successful installation will
result in opening the new site in your browser.

Run the following command for a list of available options that you may need to
configure quick-start:
- php core/scripts/drupal quick-start --help

Follow the instructions in the REINSTALL section below to start over.

NOTE: This quick start solution uses PHP's built-in web server and is not
intended for production use. Read more about how to run Drupal in a production
environment below.

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

Drupal requires:

- A web server with PHP support, for example:
  - Apache 2.4.7 (or greater) (http://httpd.apache.org/).
  - Nginx 1.1 (or greater) (http://nginx.com/).
- PHP 7.4.0 (or greater) (http://php.net/). For better security support it is
  recommended to update to at least 8.1.0.
- One of the following databases:
  - MySQL 5.7.8 (or greater) (http://www.mysql.com/).
  - MariaDB 10.3.7 (or greater) (https://mariadb.org/). MariaDB is a fully
    compatible drop-in replacement for MySQL.
  - Percona Server 5.7.8 (or greater) (http://www.percona.com/). Percona
    Server is a backwards-compatible replacement for MySQL.
  - PostgreSQL 10 (or greater) (http://www.postgresql.org/).
  - SQLite 3.26 (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"
(https://www.drupal.org/docs/system-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"
(https://www.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"
  (https://www.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 https://www.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.z of Drupal in .tar.gz
   format):

     wget https://www.drupal.org/files/projects/drupal-x.y.z.tar.gz
     tar -zxvf drupal-x.y.z.tar.gz

   This will create a new directory drupal-x.y.z/ 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.z/* drupal-x.y.z/.htaccess drupal-x.y.z/.csslintrc drupal-x.y.z/.editorconfig drupal-x.y.z/.eslintignore drupal-x.y.z/.eslintrc.json drupal-x.y.z/.gitattributes /path/to/your/installation

   You can also download the latest version of Drupal using Git on the command
   line and set up a repository by following the instructions at
   https://www.drupal.org/project/drupal/git-instructions for "Setting up
   repository for the first time".

   Once you have downloaded Drupal successfully, you may install Composer
   globally using the instructions at
   https://getcomposer.org/doc/00-intro.md#globally

   With Composer installed, run the following command from the Drupal web root:

     composer install

2. 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.

3. 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 website 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 public 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 create the directory yourself. (If you are
      creating a multisite installation, substitute the correct sites directory
      for sites/default; see the Multisite Configuration section of this file,
      below.) Sample commands from a Unix/Linux command line:

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

      Alternatively, you can make the install script work by changing
      permissions on the sites/default directory. The web server can then
      create the files directory within it for you.

      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

      Then re-run install.php (e.g. by clicking "try again" at the bottom of
      the Requirements problem page. Once the files directory is created, you
      will need to grant everyone (including the web server) permission to
      write to it with this command:

        chmod a+w sites/default/files

      Be sure to set the permissions for the default directory back after the
      installation is finished! (Leave the files directory writable.)
      Sample command:

        chmod go-w sites/default

   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

4. 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
   https://www.drupal.org/docs/8/clean-urls-in-drupal-8 to troubleshoot.

5. Change file system storage settings (optional).

   The files directory created in step 3 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. Open your settings.php in a plain-text editor, and uncomment (remove the #
      at the start of line) this line:

        # $settings['file_public_path'] = 'sites/default/files';

      Enter the desired path and save the file.

      If you want to use private file storage, you need to uncomment (remove
      the # at the start of line) the following line in settings.php:

        # $settings['file_private_path'] = '';

      Enter the path for private files and save the file.

   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.

6. 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 core/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" (https://www.drupal.org/node/202483) or
   "Modifying Windows file permissions" (https://www.drupal.org/node/202491) in
   the Drupal.org online documentation.

7. 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 of 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
   https://www.drupal.org/docs/administering-a-drupal-site/cron-automated-tasks,
   and sample cron shell scripts can be found in the core/scripts/ directory.
   (Note that these scripts must be customized like the above example, to add
   your site-specific cron key and domain name.)

REINSTALL
------------

Drupal can be reinstalled without downloading and extracting the Drupal release.

1. Drop all the tables in your database.

2. Remove everything in sites/default/files.

3. Remove sites/default/settings.php.

4. Follow the Installation Instructions above starting from Step 3 (Run the
   install script).

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 https://www.drupal.org/project/project_module and
https://www.drupal.org/project/project_theme

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 /core/modules and
/core/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 https://www.drupal.org/developing/modules. To modify the look of Drupal,
create a subtheme as described at https://www.drupal.org/node/2165673, or a
completely new theme as described at https://www.drupal.org/docs/8/theming

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

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

For this to work you need the file sites/sites.php to exist. Make a copy of
the example.sites.php file:

  $ cp sites/example.sites.php sites/sites.php

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 file 'default.settings.php' from the 'sites/default' directory into the
new site directory with file name 'settings.php' and modify 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/).

  $ cp sites/default/default.settings.php sites/example.com/settings.php

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

For more information about multiple virtual hosts or the configuration
settings, consult https://www.drupal.org/docs/8/multisite

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

MULTILINGUAL CONFIGURATION
--------------------------

By default, Drupal is installed in one language, and further languages may be
installed later.

For detailed instructions, visit
https://www.drupal.org/docs/8/multilingual

File

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