lrefopam
lrefopam

Reputation: 531

typo3 APCu error

in my typo3 project we use a company internal web space. Currently an error message appears as shown in the picture.

enter image description here

On this APCu cannot be installed in the PHP configuration due to internal defaults.

How can I modify my typo3 instance so that I can do without APCu?

Upvotes: 0

Views: 573

Answers (2)

lrefopam
lrefopam

Reputation: 531

I found the solution by myself.

In LocalConfiguration.php I searched for APCu and changed 'extbase_object' to the following:

 'SYS' => [
    'caching' => [
        'cacheConfigurations' => [
            'extbase_object' => [
                'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\NullBackend',
                'frontend' => 'TYPO3\\CMS\\Core\\Cache\\Frontend\\VariableFrontend',
                'groups' => [
                    'system',
                ],
                'options' => [
                    'defaultLifetime' => 0,
                ],
            ],
        ],
    ],

Upvotes: -1

M Klein
M Klein

Reputation: 563

Go to the Install Tool and checkout the Configuration Presets. "Extbase object cache" is one of them. Change it to the database option.

Upvotes: 2

Related Questions