1
vote
1answer
59 views

What's overriding my local_settings.php?

I'm using a local_settings.php file, that includes several $conf settings. All of the settings were working as expected until just recently when the mail_system setting started getting overridden ...
3
votes
2answers
683 views

How to add variables to $conf array?

To modify some default settings for the Feeds module, I need to set a variable in the $conf array. What is the right way to achieve this? I've tried adding it in the settings.php file (currently on ...
1
vote
1answer
182 views

Correct Syntax for $conf to populate Varnish Control Terminal

This may be more a php question, but pertains to Drupal, so here goes: I'm trying to configure Varnish Control Terminal to use multiple hosts using settings.php. I have: ...
2
votes
1answer
1k views

Does variable_get() first go to 'variable' table in the database or the $conf array in settings.php?

I can't tell from the source for variable_get() for Drupal 6 whether it first looks for something in the variable table in the database, or the $conf array in settings.php. Also, if I were to add ...