jousch

Clear TYPO3 caches, AdditionalConfiguration.php

Oct 6th, 2016
670
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. // Deactivate TYPO3 caches in TYPO3 CMS v7/v8
  2. // e.g. for Development Context
  3.  
  4. // Automatic NullBackend for all caches (it's a caching backend which forgets everything immediately)
  5. foreach ($GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations'] as $cacheName => $cacheConfiguration) {
  6.     $GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations'][$cacheName]['backend'] = \TYPO3\CMS\Core\Cache\Backend\NullBackend::class;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment