We Recommend

Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text.


Posted By

shrop on 06/12/08


Tagged

drupal


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

basicmagic


Override System Table Settings in settings.php for Drupal


Published in: PHP 


Using this convention, you can override any system table setting.

  1. $conf = array(
  2. 'site_name' => 'My SUB1 Drupal Site',
  3. 'theme_default' => 'pushbutton',
  4. 'anonymous' => 'Visitor'
  5. );

Report this snippet 

You need to login to post a comment.