Thursday 31 March 2016

Drupal 7 settings.php $conf error message - Use of undefined constant * - assumed '*' in include_once

The error here was

'Use of undefined constant site_name - assumed 'site_name' in include_once'


All I needed to do was to add quotes around my array element.

$conf[site_name]


to

$conf["site_name"]

No comments: