CiviCRM for Drupal 8 installation notes » History » Version 2
Jon Goldberg, 12/24/2018 06:38 PM
1 | 1 | Jon Goldberg | # CiviCRM for Drupal 8 installation notes |
---|---|---|---|
2 | |||
3 | * Install Drupal 8 as normal. |
||
4 | * Follow [the instructions on this gist](https://gist.github.com/dsnopek/56311dbea347874e75180883efabb620). |
||
5 | * Copy files to `<webroot>/libraries/civicrm` by using the [script on this ticket](https://lab.civicrm.org/dev/drupal/issues/9). |
||
6 | * [Hack] To get CKEditor/kcfinder working, copy it to libraries/civicrm: `cp -r $asset_source/packages/kcfinder $asset_dest/packages/`. |
||
7 | 2 | Jon Goldberg | * To get `extern` scripts loading correctly, run this (to create a *second* `settings_location.php`): |
8 | |||
9 | ```bash |
||
10 | cat << EOF > $asset_source/settings_location.php |
||
11 | <?php |
||
12 | |||
13 | define('CIVICRM_CONFDIR', '../../../web/sites'); |
||
14 | EOF |
||
15 | ``` |