Skip to content
Snippets Groups Projects
Commit 28740bbe authored by Kevin Ditscheid's avatar Kevin Ditscheid
Browse files

[BUGFIX] Prevent undefined index notice and proper errorHandler integers

parent fe8d0a38
No related branches found
No related tags found
1 merge request!3[BUGFIX] Prevent undefined index notice and proper errorHandler integers
...@@ -40,13 +40,13 @@ $GLOBALS['TYPO3_CONF_VARS']['BE']['installToolPassword'] = '$P$CCuX8EzzYaSOHJS5o ...@@ -40,13 +40,13 @@ $GLOBALS['TYPO3_CONF_VARS']['BE']['installToolPassword'] = '$P$CCuX8EzzYaSOHJS5o
$GLOBALS['TYPO3_CONF_VARS']['SYS']['systemLog'] = 'file,/var/www/typo3.log,3'; $GLOBALS['TYPO3_CONF_VARS']['SYS']['systemLog'] = 'file,/var/www/typo3.log,3';
// show failed sql queries and php errors // show failed sql queries and php errors
if (!$GLOBALS['TYPO3_DISABLE_DEBUG']) { if (!isset($GLOBALS['TYPO3_DISABLE_DEBUG'])) {
$GLOBALS['TYPO3_CONF_VARS']['SYS']['enable_DLOG'] = 0; $GLOBALS['TYPO3_CONF_VARS']['SYS']['enable_DLOG'] = 0;
$GLOBALS['TYPO3_CONF_VARS']['SYS']['devIPmask'] = '*'; $GLOBALS['TYPO3_CONF_VARS']['SYS']['devIPmask'] = '*';
$GLOBALS['TYPO3_CONF_VARS']['SYS']['sqlDebug'] = 1; $GLOBALS['TYPO3_CONF_VARS']['SYS']['sqlDebug'] = 1;
$GLOBALS['TYPO3_CONF_VARS']['SYS']['displayErrors'] = 1; $GLOBALS['TYPO3_CONF_VARS']['SYS']['displayErrors'] = 1;
$GLOBALS['TYPO3_CONF_VARS']['SYS']['enableDeprecationLog'] = 1; $GLOBALS['TYPO3_CONF_VARS']['SYS']['enableDeprecationLog'] = 1;
$GLOBALS['TYPO3_CONF_VARS']['SYS']['errorHandlerErrors'] = 'E_ALL ^ E_NOTICE'; $GLOBALS['TYPO3_CONF_VARS']['SYS']['errorHandlerErrors'] = E_ALL ^ E_NOTICE;
$GLOBALS['TYPO3_CONF_VARS']['SYS']['systemLogLevel'] = 0; $GLOBALS['TYPO3_CONF_VARS']['SYS']['systemLogLevel'] = 0;
$GLOBALS['TYPO3_CONF_VARS']['SYS']['exceptionalErrors'] = 28674; $GLOBALS['TYPO3_CONF_VARS']['SYS']['exceptionalErrors'] = 28674;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment