Bug #104825
Updated by Simon Praetorius 3 months ago
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:
<pre>
$GLOBALS['TYPO3_CONF_VARS']['BE']['warning_email_addr'] = 'user@example.com';
$GLOBALS['TYPO3_CONF_VARS']['MAIL']['defaultMailFromAddress'] = 'user@example.com';
</pre>