TYPO3 LTS 8: Unterschied zwischen den Versionen
Aus Vosp.info
F (Diskussion | Beiträge) (→Unterschiede zu vorigen Versionen) |
F (Diskussion | Beiträge) (→Unterschiede zu vorigen Versionen) |
||
Zeile 46: | Zeile 46: | ||
== extbase == | == extbase == | ||
* http://lobacher.de/files/TYPO3-CMS-8.0-Die-Neuerungen-pluswerk.pdf | * http://lobacher.de/files/TYPO3-CMS-8.0-Die-Neuerungen-pluswerk.pdf | ||
+ | |||
+ | === Extensions change TCA in ext_tables.php Check for ExtensionManagementUtility and $GLOBALS["TCA"]. === | ||
+ | Grundsätzlich müssen Befehle wie | ||
+ | <source lang=php> | ||
+ | \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile($_EXTKEY, 'Configuration/TypoScript', 'ancbootstrap'); | ||
+ | </source> | ||
+ | aus der | ||
+ | ext_tables.php | ||
+ | raus und in die | ||
+ | Configuration/TCA/Overrides/sys_template.php | ||
+ | |||
== fluid == | == fluid == | ||
Version vom 11. August 2017, 06:56 Uhr
Typo3 - TYPO3.CMS 7.6 Schnipsel
Inhaltsverzeichnis
upgrade von typo3 7.6
- Datenbank backup
# export
mysqldump --single-transaction --default-character-set=utf8 -u _username_ -p _databasename_ > mysql.yyyymmdd.sql
- Datenbankbackup und Installationsdateien auf einen neuen Server schieben, auf dem php7 läuft
- Datenbank import
# import
mysql -u _username_ -p _databasename_ < mysql.yyyymmdd.sql
- Source Code aktualisieren und fürs Webbackend Upgrade vorbereiten
cd TYPO3.CMS
git pull
git checkout -b 8.7.4 8.7.4
error: Your local changes to the following files would be overwritten by checkout:
composer.lock
Please commit your changes or stash them before you switch branches.
Aborting
mv composer.lock composer.lock_20170810
git checkout -b 8.7.4 8.7.4
Switched to a new branch '8.7.4'
composer update
touch typo3conf/ENABLE_INSTALL_TOOL
- im Browser im Installtool den Upgrade-Wizard ausführen https://domain.tld/typo3/sysext/install/Start/Install.php
Unterschiede zu vorigen Versionen
extbase
Extensions change TCA in ext_tables.php Check for ExtensionManagementUtility and $GLOBALS["TCA"].
Grundsätzlich müssen Befehle wie
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile($_EXTKEY, 'Configuration/TypoScript', 'ancbootstrap');
aus der
ext_tables.php
raus und in die
Configuration/TCA/Overrides/sys_template.php
fluid
f:if
<f:if condition="{var} == 'something'">
<f:then>do something</f:then>
<f:else if="{other-var} == 'something else'">do something else</f:else>
<f:else>do the other thing</f:else>
</f:if>
<f:if condition="{something} || {someOtherThing}">
Something or someOtherThing
</f:if>