在我的typo3 项目中,我们使用公司内部网络空间。当前出现错误消息,如图所示。
由于内部默认设置,APCu 无法安装在 PHP 配置中。
我怎样才能修改我的typo3 实例,这样我就可以不用APCu 了?
转到安装工具并检查配置预设。“Extbase 对象缓存”就是其中之一。将其更改为数据库选项。
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,
],
],
],
],