Actions
CiviCRM for Drupal 8 installation notes » History » Revision 14
« Previous |
Revision 14/24
(diff)
| Next »
Jon Goldberg, 04/18/2019 03:16 PM
{{last_updated_at}} by {{last_updated_by}}
CiviCRM for Drupal 8 installation notes¶
- Make sure your composer version is up to date! The one that ships with civicrm-buildkit is quite old.
- Run the composer command on David Snopek's blog post that fits your scenario (creating a new site vs. adding Civi to an existing D8 site).
- New site is:
composer create-project roundearth/drupal-civicrm-project:8.x-dev some-dir --no-interaction
- New site is:
- Add the following to
civicrm.settings.php
(modify the last line for your actual CMS root, and paste this afterCIVICRM_UF_BASEURL
is defined):
$civicrm_setting['URL Preferences']['userFrameworkResourceURL'] = CIVICRM_UF_BASEURL . '/libraries/civicrm/';
$civicrm_paths['civicrm.root']['url'] = CIVICRM_UF_BASEURL . '/libraries/civicrm/';
$civicrm_setting['domain']['userFrameworkResourceURL'] = CIVICRM_UF_BASEURL . '/libraries/civicrm/';
$civicrm_paths['cms.root']['path'] = '/home/jon/local/drupal8test/web';
- If you prefer separate Drupal and Civi databases, dump the Civi tables only and drop the Civi tables. Load them into a new database and modify your
CIVICRM_DSN
incivicrm.settings.php
accordingly.
kcfinder¶
[Note there is an merged MR to handle the first two steps in civicrm-composer-plugin
but it's not published to packagist yet. The third step should be included in Civi 5.13.]
kcfinder (image browsing/upload within CKEditor) is currently broken. You need to do several things to fix.
- First, copy it to libraries/civicrm:
cp -r vendor/civicrm/civicrm-core/packages/kcfinder web/libraries/civicrm/packages/
. - Your
<webroot>/libraries/civicrm/settings_location.php
should read:
<?php
define('CIVICRM_CONFDIR', dirname(dirname(dirname(dirname(__FILE__)))) . '/web/sites');
- Apply this PR to
<webroot>/libraries/civicrm/packages/kcfinder/integration/civicrm.php
.
non-bootstrap scripts¶
[There's an open MR to handle this]
- To get
extern
scripts andbin/csv/import.php
loading correctly, create a secondsettings_location.php
invendor/civicrm/civicrm-core
:
<?php
define('CIVICRM_CONFDIR', dirname(dirname(dirname(__FILE__))) . '/sites');
Updated by Jon Goldberg over 5 years ago · 14 revisions