Reputation: 531
in my typo3 project we use a company internal web space. Currently an error message appears as shown in the picture.
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
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
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