Last active
September 27, 2015 11:47
-
-
Save sanguis/1264639 to your computer and use it in GitHub Desktop.
Common Drupal Developer environment settings.php vars
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
works in drupal 6 or 7