Created
January 25, 2017 13:37
-
-
Save adamkudrna/1b96bc55226117e456545d6503448ae3 to your computer and use it in GitHub Desktop.
Drupal 7 disable cache in settings.php
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
$conf['cache'] = 0; // Page cache | |
$conf['page_cache_maximum_age'] = 0; // External cache TTL | |
$conf['preprocess_css'] = FALSE; // Optimize css | |
$conf['preprocess_js'] = FALSE; // Optimize javascript | |
$conf['views_skip_cache'] = TRUE; // Views caching |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment