[TYPO3-english] PHP 5.4

Stefan Reichelt eichelt at web.de
Wed May 22 14:31:27 CEST 2013


Hello Wiesław,

On 22/05/2013 13:25, Wiesław Golsz wrote:
> /Fix your error bitmask or reset to back to the TYPO3 default (by
> deleting the line in localconfiguration.php)/

In newer TYPO3 versions (6.x and above I think?) these harmless PHP
warnings (which are E_STRICT errors and are included in E_ALL since PHP
5.4) are excluded by default from TYPO3.

In 4.5 you can either change the values through the install tool or
add it manually to the localconf.php, for example:
$TYPO3_CONF_VARS['SYS']['errorHandlerErrors'] = '30466';
$TYPO3_CONF_VARS['SYS']['exceptionalErrors'] = '20480';

30466 and 20480 are the default values in 6.x and exclude E_STRICT
(among a few others).


Kind regards
Stefan


More information about the TYPO3-english mailing list