#1476107295 TYPO3\CMS\Core\Error\Exception

I ran into a a small problem after activating the TYPO3 debug mode in my ddev TYPO3 development installation. When opening the Configuration Presets again, I was greeted with the following error:

Plain Text

Upon investigating the Ajax error shown below the message I saw it was throwing an exception:

Plain Text
/typo3/module/tools/settings

Instead of increasing the debugging output as suggested, I guessed that – short of fixing the underlying function – deactivating deprecation notices would do the trick for now, hoping that the TYPO3 devs will fix this in an upcoming release. So I jumped into the console, navigated to /config/system and edited the file additional.php, and found the following lines:

PHP
/config/system/additional.php

A little addition, and everything worked out fine:

PHP
/config/system/additional.php

I might need to adjust this, if other errors show up, but for now it’s fine. On the downside I will not catch any deprecated stuff for now, but I can live with that.

Documentation used:

https://docs.typo3.org/m/typo3/reference-coreapi/main/en-us/Configuration/Typo3ConfVars/SYS.html#exceptionalerrors

https://www.php.net/manual/en/errorfunc.constants.php

Leave a Reply

Your email address will not be published. Required fields are marked *