Skip to content

Instantly share code, notes, and snippets.

@fedir
Last active October 21, 2021 10:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save fedir/27464e9fd09bbab60a6892f1c013fda8 to your computer and use it in GitHub Desktop.
Save fedir/27464e9fd09bbab60a6892f1c013fda8 to your computer and use it in GitHub Desktop.
TYPO3 Suppress PHP warnings
<?php
$GLOBALS['TYPO3_CONF_VARS']['SYS']['displayErrors'] = 0;
$GLOBALS['TYPO3_CONF_VARS']['SYS']['errorHandlerErrors'] = 22517; // E_ALL ^ E_DEPRECATED ^ E_NOTICE ^ E_WARNING (everything except deprecated-msgs and notices and warnings)
$GLOBALS['TYPO3_CONF_VARS']['SYS']['syslogErrorReporting'] = 22517; // E_ALL ^ E_DEPRECATED ^ E_NOTICE ^ E_WARNING (everything except deprecated-msgs and notices and warnings)
$GLOBALS['TYPO3_CONF_VARS']['SYS']['belogErrorReporting'] = 22517; // E_ALL ^ E_DEPRECATED ^ E_NOTICE ^ E_WARNING (everything except deprecated-msgs and notices and warnings)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment