By editor, 4 November, 2016 Question How to set Drupal System variables manually from a file (settings.php) ? To set Drupal System variables you can use the $settings (on Drupal 8) and $conf (On Drupal 7) array of setting.php file. Examples. On Drupal 8 $settings['file_public_path'] = '/path/to/dir/public'; On Drupal 7 $conf['file_public_path'] = '/path/to/dir/public'; $conf['theme_debug'] = 1; Local settings You can also set local changes using a separate settings file and put your local settings into this file like: if (file_exists(__DIR__ . '/settings.local.php')) { include __DIR__ . '/settings.local.php'; } Tags Drupal 8 Drupal 7 Settings Save a temporary data - Key Value Expirable. Comments You must have JavaScript enabled to use this form. Your name Subject Comment About text formats Plain text No HTML tags allowed. Lines and paragraphs break automatically. Web page addresses and email addresses turn into links automatically.
Comments