Open medarob opened 1 month ago
Yes, we are aware of this problem after running composer remove. Unfortunately, we haven't found a way to modify our handlers during the removal process. @medarob
You could hard-register them in your ext_localconf.php
if an extension setting for this is enabled, e.g. "Automatically register error handlers". If not enabled, people need to manually register them instead, then hopefully being aware that they also manually need to remove them again on package removal.
answer from @helhum in Slack: https://typo3.slack.com/archives/C028J3N83/p1729178993885199?thread_ts=1729147309.107199&cid=C028J3N83
error and exception handler must be available early in the bootstrap. registering them in ext_localconf.php will be ineffective and will not work any more (it worked in older versions but the code was very messy to support that)
it is imho a design flaw in typo3, that exchanging those is allowed. instead it should only be possible to provide listeners for errors and renderer for exceptions. the handler themselves should/ must be generic hand hard coded
I installed the extension but got deprecation warnings in the FE so I wanted to deinstall the extension again, to see if the warning will be gone.
During deinstallation, an error occured and this breaks the instaltion completely.
TYPO3 11.5.39
Now the following is shown in the FE:
After manually removing the following entries from the
LocalConfiguration.php
the BE and FE works again