TYPO3 CMS 8.7.13安装工具升级向导:执行"Execute database migrations on single rows"时出错
TYPO3 CMS 8.7.13 Install Tool Upgrade Wizard: Error when doing "Execute database migrations on single rows"
在 TYPO3 CMS 安装工具升级向导中执行步骤 "Execute database migrations on single rows" 时,我收到以下没有错误详细信息的错误页面。我正在从 TYPO3 7.6 升级到 8.7
我已经在安装工具中将配置预设设置为调试。
如何查看更多错误详情?
[更新#1]
我刚刚在 TYPO3 后端菜单的 "Log" 下发现了这个,我怀疑它可能是问题所在或与问题相关,但我仍然不知道如何解决???
Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1486155150: The RecordLinkHandler expects identifier and uid as $parameter configuration. | InvalidArgumentException thrown in file /some/path/vendor/typo3/cms/typo3/sysext/core/Classes/LinkHandling/RecordLinkHandler.php in line 40. Requested URL: https://example.com/typo3/install.php?&install[action]=upgradeWizard&install[controller]=tool&install[context]=standalone
[更新#2]
原来团队中的其他人在 typo3conf/AdditionalConfiguration.php
中有以下内容,它覆盖了 typo3conf/LocalConfiguration.php
...
中的设置
$GLOBALS['TYPO3_CONF_VARS']['BE']['debug'] = false;
$GLOBALS['TYPO3_CONF_VARS']['SYS']['displayErrors'] = 0;
一旦我将这些更改为 true,我就能看到错误痕迹...是的!已解决。
有关错误的更多详细信息,您需要在 Locanconfiguration.php
文件中设置 debug => true
。如下所示。
'BE' => [
'debug' => true
],
同时在您的错字模板中添加以下行。
config.contentObjectExceptionHandler = 0
在 TYPO3 CMS 安装工具升级向导中执行步骤 "Execute database migrations on single rows" 时,我收到以下没有错误详细信息的错误页面。我正在从 TYPO3 7.6 升级到 8.7
我已经在安装工具中将配置预设设置为调试。
如何查看更多错误详情?
[更新#1]
我刚刚在 TYPO3 后端菜单的 "Log" 下发现了这个,我怀疑它可能是问题所在或与问题相关,但我仍然不知道如何解决???
Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1486155150: The RecordLinkHandler expects identifier and uid as $parameter configuration. | InvalidArgumentException thrown in file /some/path/vendor/typo3/cms/typo3/sysext/core/Classes/LinkHandling/RecordLinkHandler.php in line 40. Requested URL: https://example.com/typo3/install.php?&install[action]=upgradeWizard&install[controller]=tool&install[context]=standalone
[更新#2]
原来团队中的其他人在 typo3conf/AdditionalConfiguration.php
中有以下内容,它覆盖了 typo3conf/LocalConfiguration.php
...
$GLOBALS['TYPO3_CONF_VARS']['BE']['debug'] = false;
$GLOBALS['TYPO3_CONF_VARS']['SYS']['displayErrors'] = 0;
一旦我将这些更改为 true,我就能看到错误痕迹...是的!已解决。
有关错误的更多详细信息,您需要在 Locanconfiguration.php
文件中设置 debug => true
。如下所示。
'BE' => [
'debug' => true
],
同时在您的错字模板中添加以下行。
config.contentObjectExceptionHandler = 0