Project

General

Profile

Feature #12440

Updated by Marc Egger over 2 years ago

TEST INSTANZ: http://webwork16.math.uzh.ch/megger/forkred/ 

 h2. upgrade to newest version of Typo3 v9 

 * Backup LocalConfiguration.php! 
 * download 9.5.26 
 * replace symlink typo3_src 
 <pre> 
 rm typo3_src 
 ln -s /var/www/typo3_src-9.5.26/ typo3_src 
 </pre> 

 h2. Upgrade to Typo3 v10 

 * download Typo3 v10 
 <pre> 
 cd /var/www/ 
 wget --content-disposition https://get.typo3.org/10.4.15 
 tar -xzf typo3_src-10.4.15.tar.gz 
 rm typo3_src-10.4.15.tar.gz 
 </pre> 

 * update reference index: 
 ** “System” > “DB check” module and use the “Check and update global reference index” function. 
 *** https://docs.typo3.org/m/typo3/guide-installation/master/en-us/Upgrade/UpdateReferenceIndex/Index.html 

 * replace symlink 
 <pre> 
 rm typo3_src 
 ln -s /var/www/typo3_src-10.4.15/ typo3_src 
 </pre> 

 * upgrade wizzard 
 ** go install tool: install.php 
 ** upgrade > run upgrade wizard 
 ** execute all except the ones that install extensions 

 * Database analyze tool 
 ** go to install tool: install.php 
 ** Analyze Database Structure > apply all changes 
 *** removed tables renamed to: zzz_tableName 
 *** removed fields renamed to: zzz_fieldName 
 *** did NOT drop any tables or fields 

 * clear caches 
 ** Maintanance > Flush Cache 

 * delete the other temporary files, which TYPO3 saves in typo3temp/ by doing: 
 ** Install tool > Maintanance > Remove Temporary Assets

Back