Actions
Bug #104825
closedConfigure ViewFactory for InstallTool
Start date:
2024-09-04
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
13
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Currently, the new ViewFactory seems to not be configured properly for the minimal DI of the InstallTool. This is reproducible by:
- enabling InstallTool
- configuring email notifications for InstallTool logins
- logging in to the InstallTool
During the login, the InstallTool attempts to send the notification via FluidEmail
, which requires the new ViewFactory
.
Cannot instantiate interface TYPO3\CMS\Core\View\ViewFactoryInterface
Configuration necessary to trigger the error:
$GLOBALS['TYPO3_CONF_VARS']['BE']['warning_email_addr'] = 'user@example.com'; $GLOBALS['TYPO3_CONF_VARS']['MAIL']['defaultMailFromAddress'] = 'user@example.com';
Actions