Skip to content

Instantly share code, notes, and snippets.

@sanguis
Last active September 27, 2015 11:47
Show Gist options
  • Save sanguis/1264639 to your computer and use it in GitHub Desktop.
Save sanguis/1264639 to your computer and use it in GitHub Desktop.
Common Drupal Developer environment settings.php vars
//if (module_exists("stage_file_proxy")) $conf['stage_file_proxy_origin'] = "http://www.url.com";
// Disable (page) caching
$conf['cache'] = 0;
// Output errors to screen (and log)
$conf['error_level'] = 1;
// Disable aggregation of js and css
$conf['preprocess_js'] = FALSE;
$conf['preprocess_css'] = FALSE;
@sanguis
Copy link
Author

sanguis commented Feb 29, 2012

works in drupal 6 or 7

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment