You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a similar issue than was already reported by @derhansen in #55.
We hit the same situation (also hard to figure out what the problem was) not in the Install Tool but by calling a scheduler task in the backend when having filefill enabled and a configured login.loginLogo. EXT:brofix's task tries to send an Email using FluidEmail. I end up with:
Execution of task "Execute console commands (scheduler)" failed with the following message:
PHP Warning: sha1_file(typo3conf/ext/sitepackage/Resources/Public/Icons/logo-sign.svg): failed to open stream:
No such file or directory in /app/html/typo3/sysext/core/Classes/Resource/Driver/LocalDriver.php line 751
Even more simple to reproduce. Add something like this to the fluid template of your Backend Module:
Seems like the FileFillDriver::getAbsolutePath misses prefixing a site prefix (absoluteBasePath = null for the "pseudo-storage = 0" in this situation).
The text was updated successfully, but these errors were encountered:
This is a similar issue than was already reported by @derhansen in #55.
We hit the same situation (also hard to figure out what the problem was) not in the Install Tool but by calling a scheduler task in the backend when having filefill enabled and a configured
login.loginLogo
. EXT:brofix's task tries to send an Email using FluidEmail. I end up with:Even more simple to reproduce. Add something like this to the fluid template of your Backend Module:
Seems like the
FileFillDriver::getAbsolutePath
misses prefixing a site prefix (absoluteBasePath = null
for the "pseudo-storage = 0" in this situation).The text was updated successfully, but these errors were encountered: