Typo3 LTS Upgrade: Unterschied zwischen den Versionen
Aus Vosp.info
F (Diskussion | Beiträge) (→typo3 6.2 nach 7.6) |
F (Diskussion | Beiträge) (→standard prozedure) |
||
Zeile 4: | Zeile 4: | ||
== standard prozedure == | == standard prozedure == | ||
− | + | === auf dem alten Server === | |
+ | |||
+ | ==== Backup Machen ==== | ||
+ | <source lang="bash"> | ||
+ | cat typo3conf/LocalConfiguration.php | grep "DB" -A 10 | ||
+ | # export | ||
+ | mysqldump --single-transaction --default-character-set=utf8 -u _username_ -p _databasename_ > mysql.typo3.VV.yyyymmdd.sql | ||
+ | </source> | ||
+ | |||
+ | ==== upgrade ==== | ||
+ | <source lang=bash> | ||
+ | wget get.typo3.org/x.y -O typo3_src-x.y.tar.gz | ||
+ | tar -xzf typo3_src-x.y.tar.gz | ||
+ | </source> | ||
+ | |||
+ | * typo3 x.y runter laden | ||
+ | * typo3 auf x.y verlinken | ||
+ | <source lang=bash>typo3_src -> typo3_src-7.6.32/</source> | ||
+ | * https://domain.tld/typo3/install | ||
+ | ** alle Upgrade Wizard durch machen | ||
+ | *** und was sich sonst noch anbietet | ||
+ | |||
+ | ==== für den Umzug exportieren ==== | ||
+ | <source lang=bash> | ||
+ | mysqldump --single-transaction --default-character-set=utf8 -u _username_ -p _databasename_ > mysql.typo3.76.yyyymmdd.sql | ||
+ | </source > | ||
+ | |||
+ | === auf dem neuen Server === | ||
+ | |||
+ | ==== Datenbank ==== | ||
+ | * Datenbank erstellen | ||
+ | <source lang="bash"> | ||
+ | mysql -u root -p | ||
+ | </source> | ||
+ | <source lang="sql"> | ||
+ | create database DATABASE; | ||
+ | create user 'USERNAME'@'localhost' identified by 'PASSWORD'; | ||
+ | grant all on DATABASE.* to 'USERNAME'@'localhost'; | ||
+ | FLUSH PRIVILEGES; | ||
+ | </source> | ||
+ | |||
+ | * Datenbank imporierten | ||
+ | <source lang="bash"> | ||
+ | # import | ||
+ | mysql -u _username_ -p _databasename_ < mysql.yyyymmdd.sql | ||
+ | </source> | ||
== typo3 7.6 nach 8.7 == | == typo3 7.6 nach 8.7 == |
Version vom 27. März 2024, 22:51 Uhr
https://jweiland.net/typo3-cms/versionen-und-updates.html
Inhaltsverzeichnis
- 1 standard prozedure
- 2 typo3 7.6 nach 8.7
- 2.1 Probleme
- 2.1.1 t3-8.7: The option $TYPO3_CONF_VARS[SYS][displayErrors] is not set to "-1", "0" or "1"
- 2.1.2 t3-8.7: Important actions - Database update failed - Error: Data truncated for column 'image', 'media' at row
- 2.1.3 t3-8.7: MySQL database character set check failed | Checking database character set failed, got key "latin1" instead of "utf8" or "utf8mb4"
- 2.1 Probleme
- 3 typo3 6.2 nach 7.6
- 3.1 Probleme
- 3.1.1 t3-7.6: It looks like the character set utf8 is not used for this connection even though it is configured as connection charset. This TYPO3 installation is using the $GLOBALS['TYPO3_CONF_VARS']['SYS']['setDBinit'] property with the following value: "utf8". Please make sure that this command does not overwrite the configured charset. Please note that for the TYPO3 database everything other than utf8 is unsupported since version 4.7.
- 3.1.2 t3-7.6: PHP Fatal error: Class 't3lib_error_ErrorHandler' not found in GeneralUtility.php
- 3.1.3 The package "yag_theme_perfectlightbox" depends on "perfectlightbox" which is not present in the system.
- 3.1.4 Core: Error handler (FE): PHP Catchable Fatal Error: Argument 2 passed to tx_simulatestatic::hookCheckAlternativeIDMethods() must be an instance of tslib_fe, instance of TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController class.tx_simulatestatic.php line 193
- 3.1 Probleme
- 4 typo3 4.6 nach 6.2
- 5 weiteres
standard prozedure
auf dem alten Server
Backup Machen
cat typo3conf/LocalConfiguration.php | grep "DB" -A 10
# export
mysqldump --single-transaction --default-character-set=utf8 -u _username_ -p _databasename_ > mysql.typo3.VV.yyyymmdd.sql
upgrade
wget get.typo3.org/x.y -O typo3_src-x.y.tar.gz
tar -xzf typo3_src-x.y.tar.gz
- typo3 x.y runter laden
- typo3 auf x.y verlinken
typo3_src -> typo3_src-7.6.32/
- https://domain.tld/typo3/install
- alle Upgrade Wizard durch machen
- und was sich sonst noch anbietet
- alle Upgrade Wizard durch machen
für den Umzug exportieren
mysqldump --single-transaction --default-character-set=utf8 -u _username_ -p _databasename_ > mysql.typo3.76.yyyymmdd.sql
auf dem neuen Server
Datenbank
- Datenbank erstellen
mysql -u root -p
create database DATABASE;
create user 'USERNAME'@'localhost' identified by 'PASSWORD';
grant all on DATABASE.* to 'USERNAME'@'localhost';
FLUSH PRIVILEGES;
- Datenbank imporierten
# import
mysql -u _username_ -p _databasename_ < mysql.yyyymmdd.sql
typo3 7.6 nach 8.7
Probleme
t3-8.7: The option $TYPO3_CONF_VARS[SYS][displayErrors] is not set to "-1", "0" or "1"
[proxy_fcgi:error] [pid 2607] [client 176.6.178.229:36660] AH01071: Got error 'PHP message: PHP Fatal error: Uncaught RuntimeException: The option $TYPO3_CONF_VARS[SYS][displayErrors] is not set to "-1", "0" or "1". in typo3_src-8.7.32/typo3/sysext/core/Classes/Core/Bootstrap.php:660\nStack
- typo3conf/AdditionalConfiguration.php
- displayErrors war 2
}
$GLOBALS['TYPO3_CONF_VARS']['SYS']['displayErrors'] = '1';
echo '<h1>display: '.$GLOBALS['TYPO3_CONF_VARS']['SYS']['displayErrors'] .'</h1>';
?>
t3-8.7: Important actions - Database update failed - Error: Data truncated for column 'image', 'media' at row
Database analyzer Change fields
-- fehler meldungen weil zellen mit null voll sind
ALTER TABLE `tt_content` CHANGE `image` `image` INT UNSIGNED DEFAULT 0 NOT NULL
-- ERROR 1265 (01000): Data truncated for column 'image' at row 57
ALTER TABLE `tt_content` CHANGE `media` `media` INT UNSIGNED DEFAULT 0 NOT NULL
-- ERROR 1265 (01000): Data truncated for column 'media' at row 49
--
select count(uid) from tt_content where image is null;
update tt_content set image='0' where image is null;
--
select count(uid) from tt_content where media is null;
update tt_content set media='0' where media is null;
danach gehts
t3-8.7: MySQL database character set check failed | Checking database character set failed, got key "latin1" instead of "utf8" or "utf8mb4"
mysql> ALTER DATABASE databasename CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
typo3 6.2 nach 7.6
- alter Server
- PHP 5.6
- mysql 5.5
- neuer Server
- PHP 7.3
- mysql 5.7
Probleme
t3-7.6: It looks like the character set utf8 is not used for this connection even though it is configured as connection charset. This TYPO3 installation is using the $GLOBALS['TYPO3_CONF_VARS']['SYS']['setDBinit'] property with the following value: "utf8". Please make sure that this command does not overwrite the configured charset. Please note that for the TYPO3 database everything other than utf8 is unsupported since version 4.7.
- typo3_src/typo3/sysext/core/Classes/Database/DatabaseConnection.php
}
}
// $this->checkConnectionCharset();
} else {
// @todo This should raise an exception. Would be useful especially to work during installation.
t3-7.6: PHP Fatal error: Class 't3lib_error_ErrorHandler' not found in GeneralUtility.php
- typo3_src-8.7.32/typo3/sysext/core/Classes/Utility/GeneralUtility.php:3975
- typo3_src-7.6.32/typo3/sysext/core/Classes/Utility/GeneralUtility.php on line 4569
- typo3/sysext/core/Classes/Utility/GeneralUtility.php anpassen
protected static function instantiateClass($className, $arguments)
{
// @nc workarround ErrorHandler BOF
if($className == 't3lib_error_ErrorHandler') {
$className = 'TYPO3\CMS\Core\Error\ErrorHandler';
}
// @nc workarround ErrorHandler EOF
switch (count($arguments)) {
The package "yag_theme_perfectlightbox" depends on "perfectlightbox" which is not present in the system.
- alle extensions auf den neusten stand bringen, deinstallieren und neuinstallieren
- https://extensions.typo3.org/extension/perfectlightbox
- https://extensions.typo3.org/extension/yag
- https://extensions.typo3.org/extension/t3jquery
- https://extensions.typo3.org/extension/pt_extbase
- https://extensions.typo3.org/extension/pt_extlist
- https://extensions.typo3.org/extension/yag_theme_perfectlightbox
- yag_theme_perfectlightbox
- cat yag_theme_perfectlightbox/ext_emconf.php
'depends' =>
array (
// 'typo3' => '4.5.0-6.2.99',
'typo3' => '4.5.0',
// ....
),
Core: Error handler (FE): PHP Catchable Fatal Error: Argument 2 passed to tx_simulatestatic::hookCheckAlternativeIDMethods() must be an instance of tslib_fe, instance of TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController class.tx_simulatestatic.php line 193
install https://extensions.typo3.org/extension/compatibility6
typo3 4.6 nach 6.2
- http://wiki.typo3.org/Upgrade#Upgrading_to_6.2_Long_Term_Support
- http://docs.typo3.org/typo3cms/InstallationGuide/Upgrade/Index.html
install backend
Komisch
gibt ne fehlermeldung im error.log .... anzeige zeigt aber positives ergebnis
[error] File does not exist: typo3temp/ExtensionCompatibilityTesterErrors.json, referer: typo3/sysext/install/Start/Install.php?install[action]=importantActions&install[context]=standalone&install[controller]=tool
Check for broken extensions
Incompatible extension found! TYPO3 CMS 6.2.10
- tt_news
- tt_address
- t3blog
inkokmpatibel aber nicht automatisch gefunden
- Media (DAM) dam
problematische Extensions
ty_seo bzw tq_seo
[error] PHP Fatal error: require_once(): Failed opening required 'typo3/interfaces/interface.backend_cacheActionsHook.php' (include_path='typo3/contrib/pear/:.:/usr/share/php:/usr/share/pear') in typo3conf/ext/tq_seo/hooks/sitemap/class.cache_controller_hook.php on line 261
- ergibt einen FATAL Error ... .sprich nur install seite funzt, backend und frontend nicht ....
- damit das backend wieder funktioniert muss in typo3conf/ext/tq_seo/hooks/sitemap/class.cache_controller_hook.php Zeile 26 das require_once auskommentiert werden!!
extensions die im nachhinein geupdated werden können
nicht unbedingt getestet!!!
- static_info_tables (update skript)
- pagebrowse
- realurl
- tq_seo (update skript)
- news
- irgendwie fehlen die Kategorien
weiteres
Dateirechte setzen
chmod 2775 ./
chmod 2775 ./typo3temp/
chmod 2775 ./typo3temp/_processed_
chmod 2775 ./typo3temp/compressor/
chmod 2775 ./typo3temp/cs
chmod 2775 ./typo3temp/GB
chmod 2775 ./typo3temp/llxml/
chmod 2775 ./typo3temp/locks/
chmod 2775 ./typo3temp/pics/
chmod 2775 ./typo3temp/sprites/
chmod 2775 ./typo3temp/temp/
chmod 2775 ./typo3conf/
chmod 2775 ./typo3conf/ext
chmod 2775 ./typo3conf/l10n/
chmod 2775 ./uploads/
chmod 2775 ./uploads/media/
chmod 2775 ./uploads/pics/
chmod 2775 ./fileadmin/
chmod 2775 ./fileadmin/_temp_/
chmod 2775 ./fileadmin/user_upload/