la procedura è simile a quella della versione 4.5.17 e .18 che trovi qui:
http://davdenic.com/upgrade-typo3-4-5-17-su-php-5-2-con-messaggio-e_deprecated/
consiste nel modificare su questi 7 file
- index.php
- typo3/init.php
- typo3/install/index.php
- typo3/sysext/rtehtmlarea/mod4/select_image.php
- typo3/sysext/rtehtmlarea/mod5/user.php
- typo3/sysext/rtehtmlarea/mod6/parse_html.php
- typo3/thumbs.php
sostituendo
[php style="light"]
error_reporting(E_ALL & ~(E_STRICT | E_NOTICE | E_DEPRECATED));
[/php]
con
[php style="light"]
if (defined('E_DEPRECATED')) {
error_reporting(E_ALL & ~(E_STRICT | E_NOTICE | E_DEPRECATED));
} else {
error_reporting(E_ALL ^ E_NOTICE);
}
[/php]
Caricare i file modificati e procedere l'installazione come al solito.