Typo3 Entwicklereinstellungen: Unterschied zwischen den Versionen

Aus Vosp.info
Wechseln zu:Navigation, Suche
(Die Seite wurde neu angelegt: „= typo3 CMS V6 = == log Einstellung == folgende Datei anlegen falls nicht schon existiert typo3conf/AdditionalConfiguration.php diese Datei wird nicht wieder…“)
 
(log Einstellung)
Zeile 52: Zeile 52:
 
}
 
}
 
</source>
 
</source>
 +
 +
* '''Quellen'''
 +
** [http://www.pi-phi.de/291.html Pi-phi.de Spickzettel]
 +
** [http://jweiland.net/typo3/versionen-und-updates/version-60.html Tipps zu TYPO3 CMS 6.0]

Version vom 23. Juni 2013, 13:05 Uhr

typo3 CMS V6

log Einstellung

folgende Datei anlegen falls nicht schon existiert

typo3conf/AdditionalConfiguration.php

diese Datei wird nicht wieder automatisch überschrieben wie LocalConfiguration.php

$system = 0; //0 = develop, 1 = production, 2 = performance
if ($system === 0) {
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['displayErrors'] = '1';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['devIPmask'] = '127.0.0.*';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['errorHandler'] = 't3lib_error_ErrorHandler';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['errorHandlerErrors'] = E_ALL ^ E_NOTICE;
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['exceptionalErrors'] = E_ALL ^ E_NOTICE ^ E_WARNING ^ E_USER_ERROR ^ E_USER_NOTICE ^ E_USER_WARNING;
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['debugExceptionHandler'] = 't3lib_error_DebugExceptionHandler';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['productionExceptionHandler'] = 't3lib_error_DebugExceptionHandler';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['systemLogLevel'] = '0';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['systemLog'] = 'error_log';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['enable_DLOG'] = '1';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['enable_errorDLOG'] = '1';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['enable_exceptionDLOG'] = '1';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['enableDeprecationLog'] = 'console';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['sqlDebug'] = '1';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['extCache'] = '0';
} elseif ($system === 1) {
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['displayErrors'] = '2';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['devIPmask'] = '127.0.0.*';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['errorHandler'] = 't3lib_error_ErrorHandler';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['systemLogLevel'] = '2';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['systemLog'] = 'error_log,,2;syslog,LOCAL0,,3';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['enable_DLOG'] = '0';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['enable_errorDLOG'] = '0';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['enable_exceptionDLOG'] = '0';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['errorHandlerErrors'] = 0;
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['exceptionalErrors'] = 0;
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['enableDeprecationLog'] = '';
} elseif ($system === 2) {
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['displayErrors'] = '0';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['devIPmask'] = '';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['errorHandler'] = '';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['debugExceptionHandler'] = '';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['productionExceptionHandler'] = '';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['systemLog'] = '';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['enable_DLOG'] = '0';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['enable_errorDLOG'] = '0';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['enable_exceptionDLOG'] = '0';
	$GLOBALS['TYPO3_CONF_VARS']['SYS']['enableDeprecationLog'] = '';
}