Deactivate TYPO3 Cache

PHOTO EMBED

Tue Oct 22 2024 11:48:25 GMT+0000 (Coordinated Universal Time)

Saved by @dphillips #php #cache

$GLOBALS['TYPO3_CONF_VARS'] = array_replace_recursive(
    $GLOBALS['TYPO3_CONF_VARS'],
    [
            'SYS' => [
                'caching' => [
                    'cacheConfigurations' => [
                        'pages' => [
                            'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\NullBackend',
                            'frontend' => 'TYPO3\\CMS\\Core\\Cache\\Frontend\\NullFrontend',
                        ],
                        'rootline' => [
                            'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\NullBackend',
                            'frontend' => 'TYPO3\\CMS\\Core\\Cache\\Frontend\\NullFrontend',
                        ],
                        'l10n' => [
                            'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\NullBackend',
                            'frontend' => 'TYPO3\\CMS\\Core\\Cache\\Frontend\\NullFrontend',
                        ],
                    ],
                ],
            ],
        ]
);
content_copyCOPY

This can be added to the additional.php to deactivate caches in development.