我刚刚按照官方文档将typo3从7.6.32升级到8.7.29。实际上,升级进行得很好,我能够使用安装工具执行所有必需的步骤(特别是升级向导和重要操作)。 升级后,FE似乎仍然可以正常工作,BE中存在一些问题。
每次尝试登录BE时,我都会遇到以下typo3异常:
Uncaught TYPO3 Exception
Class 'TYPO3\CMS\Fluid\Core\ViewHelper\Exception\InvalidVariableException' not found
Error thrown in file
/var/www/mysite/typo3_src-8.7.29/typo3/sysext/fluid/Classes/ViewHelpers/TranslateViewHelper.php in line 133.
此文件的第133行是函数“ renderStatic”的一部分,下面是代码:
110. public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
111. {
112. $key = $arguments['key'];
113. $id = $arguments['id'];
114. $default = $arguments['default'];
115. $htmlEscape = $arguments['htmlEscape'];
116. $extensionName = $arguments['extensionName'];
117. $arguments = $arguments['arguments'];
118.
119. if ($htmlEscape !== null) {
120. GeneralUtility::logDeprecatedViewHelperAttribute(
121. 'htmlEscape',
122. $renderingContext,
123. 'Please wrap the view helper in <f:format.raw> if you want to disable HTML escaping, which is enabled by default now.'
124. );
125. }
126.
127. // Wrapper including a compatibility layer for TYPO3 Flow Translation
128. if ($id === null) {
129. $id = $key;
130. }
131.
132. if ((string)$id === '') {
133. throw new InvalidVariableException('An argument "key" or "id" has to be provided', 1351584844);
134. }
尽管有此错误,但BE左侧的主菜单似乎可以正常工作,除了以下事实之外:如果我选择“ DB check”->“ Relations”,则会遇到另一个异常:
#1476107295: PHP Warning: Invalid argument supplied for foreach() in /var/www/mysite/typo3_src-8.7.29/typo3/sysext/core/Classes/Integrity/DatabaseIntegrityCheck.php line 352 (More information)
这是此文件的代码的相关部分。
347 public function getGroupFields($mode)
348 {
349 $result = [];
350 foreach ($GLOBALS['TCA'] as $table => $tableConf) {
351 $cols = $GLOBALS['TCA'][$table]['columns'];
352 foreach ($cols as $field => $config) {
353 if ($config['config']['type'] === 'group') {
354 if ((!$mode || $mode === 'file') && $config['config']['internal_type'] === 'file' || (!$mode || $mode ==='db') && $config['config']['internal_type'] === 'db') {
355 $result[$table][] = $field;
356 }
357 }
358 if ((!$mode || $mode === 'db') && $config['config']['type'] === 'select' && $config['config']['foreign_table']) {
359 $result[$table][] = $field;
360 }
361 }
362 if ($result[$table]) {
363 $result[$table] = implode(',', $result[$table]);
364 }
365 }
366 return $result;
367 }
As far as I can see all the rest works fine.
My system details:
- Linux (kernel 4.4.190)
- Apache 2.4.39
- PHP 7.2.24
- Typo3 8.7.29
Thanks in advance for your help!
答案 0 :(得分:0)
您在这里有两个独立的问题:
第一个是某些东西正在使用
第二个是您的TCA显然已损坏。有一个表,没有表定义。
这两种情况都可能是某些扩展引起的,因此请尝试尽可能禁用所有扩展,然后逐个重新启用它们。