For more information about the different settings.php files in your Site Factory platform, see Understanding settings.php file differences.
To add the Site Factory Connector module to your codebase, use the command appropriate for your installed version of Drupal:
| Drupal version | Command |
|---|---|
| Drupal 7 | Download the module by using the drush dl acsf command. |
| Current Drupal version | Add the module to your composer.json by using the composer require drupal/acsf command. |
Do not install the module in more than one location in your code repository (such as both docroot/profiles/profilename/modules/contrib and docroot/modules/contrib). Multiple instances of the module can prevent Site Factory from discovering and using the module.
To determine if your code repository contains more than one version of the module, run the following Git command in the docroot directory:
git ls-files "*acsf.info*"Whenever you update the Site Factory Connector module to a newer version, complete the following steps to update the module in your Drupal distribution:
Download and extract the updated Site Factory Connector module from Drupal.org into your distribution with the command appropriate to your version of Drupal, replacing [path/to/acsf/acsf_init] with the path to your acsf_init module:
Composer:
composer update drupal/acsf --with-dependencies
/local/site/vendor/bin/drush acsf-init --include="[path/to/acsf/acsf_init]/acsf/acsf_init" --root="/local/site/docroot" -yThe Drush command creates several directories and then copies files that Site Factory requires for its tasks, including locating the correct database credentials.
Run the following Drush command from the docroot directory to ensure everything is in order before you commit the custom distribution to the repository:
drush --include=/path/to/acsf/acsf_init acsf-init-verifyThe acsf-init-verify command should display the following message:
acsf-init required files okYou must repeat this process every time you update the Site Factory Connector module.
If you fail to execute the acsf-init command, or Site Factory cannot determine the Site Factory Connector module version, your deployment will fail.
The Site Factory Connector module ensures the settings.php file includes only the required settings for Site Factory. When developing a custom Drupal distribution locally for use on Site Factory, you may need to modify settings.php in ways conflicting with the requirements enforced by the Site Factory Connector module.
You can avoid conflicts by executing the acsf-init command with the --skip-default-settings parameter to skip the settings.php validation when running a Drupal website that includes the Site Factory Connector module, but is not on Site Factory, as in the following example:
drush --include=/path/to/acsf/acsf_init acsf-init --skip-default-settingsThis parameter enables you to locally deploy and test a version of settings.php with settings needed for local development, while still ensuring your production websites use the version of settings.php required by Site Factory.
You must execute acsf-init without --skip-default-settings before you commit and push your custom distribution’s files to Site Factory.
The acsf-init command writes your sites/default/settings.php file when you prepare a custom Drupal distribution for development and deployment on Site Factory. If you cannot create new websites using your custom Drupal distribution, examine the .gitignore file in your code repository. Your .gitignore file may be set to exclude the settings.php file, so settings.php never gets pushed to the Site Factory. If your .gitignore file contains a line similar to the following example, delete it from .gitignore:
# Ignore configuration files that may contain sensitive information.
sites/*/settings.phpAfter deleting the line, commit your changes, and push your code again, as described in Performing a production deployment.
If you do not execute the acsf-init command after an Site Factory platform release, or execute the command incorrectly, you may encounter one or more of the following error messages:
| Error | Description |
|---|---|
| If a hotfix fails, ensure your user has permission to overwrite the settings.php file, and then execute the command as described in Executing acsf-init after module or Drupal core updates. |
Command acsf-init needs a higher bootstrap level to run | The acsf-init command was executed from a directory without Git checkout or write permissions. Execute the command from a directory with these permissions to resolve the problem. |
settings.php included in .gitignore | If the acsf-init command fails, even when executed from the correct directory and by a user with correct permissions, check that your website’s settings.php is not included in your .gitignore file, which will cause acsf-init to fail. Remove settings.php from your .gitignore file to resolve the problem. |
If this content did not answer your questions, try searching or contacting our support team for further assistance.
.gitignoreacsf-initsettings.php.gitignoreIf this content did not answer your questions, try searching or contacting our support team for further assistance.