TYPO3 LTS 8: Unterschied zwischen den Versionen

Aus Vosp.info
Wechseln zu:Navigation, Suche
(Extensions)
(CKEditor - Rich Text Editor - rte_ckeditor)
Zeile 22: Zeile 22:
 
* https://www.clickstorm.de/blog/der-neue-typo3-rte-ckeditor/
 
* https://www.clickstorm.de/blog/der-neue-typo3-rte-ckeditor/
 
** https://docs.typo3.org/typo3cms/extensions/rte_ckeditor_image/
 
** https://docs.typo3.org/typo3cms/extensions/rte_ckeditor_image/
 +
 +
* Achtung:
 +
es muss
 +
page.includeCSS.ancbootstrap = EXT:ancbootstrap/Resources/Public/Stylesheets/style.css
 +
das css extra eingebunden werden, sonst passiert im frontend nichts
  
 
= upgrade von typo3 7.6 =
 
= upgrade von typo3 7.6 =

Version vom 16. September 2017, 17:18 Uhr

Typo3 - TYPO3.CMS 7.6 Schnipsel

Dokumentationen

erste Schritte

Extensions

CKEditor - Rich Text Editor - rte_ckeditor

ist veraltet

htmlArea RTE 	rtehtmlarea 	8.7.0 	obsolete 	Local 

ist der neue

CKEditor Rich Text Editor 	rte_ckeditor 	8.7.6 	stable 	System

zusätzliche Plugins

CKEditor Rich Text Editor Image Support 	rte_ckeditor_image 	8.7.4 	stable 	Local


  • Achtung:

es muss

page.includeCSS.ancbootstrap = EXT:ancbootstrap/Resources/Public/Stylesheets/style.css

das css extra eingebunden werden, sonst passiert im frontend nichts

upgrade von typo3 7.6

Grund Update / Installation

  • 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


(ext:rtehtmlarea)

  • -compatibility7

Probleme mit fluid_styled_content

  • -compatibility6
Core: Exception handler (WEB): Uncaught TYPO3 Exception: Call to a member function push() on null
  • -adodb&dbal
Oops, an error occurred!
Argument 1 passed to TYPO3\CMS\Extensionmanager\Utility\InstallUtility::injectInstallToolSqlParser() must be an instance of TYPO3\CMS\Install\Service\SqlSchemaMigrationService, instance of TYPO3\CMS\Dbal\Service\SqlSchemaMigrationService given, called in /var/www/calmeyer.netz.coop/TYPO3.CMS/typo3/sysext/extbase/Classes/Object/Container/Container.php on line 233

Feinheiten in den Extensions

css_styled_content => fluid_styled_content


  • ERROR: Content Element with uid "2" and type "textmedia" has no rendering definition!

bei aktivieren von Seiten Content/Inhaltselemente kein Template

  • Layoutname darf nicht default heißen!!!
    • Layoutname muß mit einem Großbuchstaben anfangen, gefolgt von Kleinbuchstaben!
<!-- kein inhalt, kein layout, kein template ... mist -->
<f:layout name="Default" />


<!-- alles gut !!!! -->
<f:layout name="Test" />
  • die Layout dateien müssen natürlich auch umbenannt werden!

typo3conf/ext/anclwhaasindex/Resources/Private/Layouts/Default.html => typo3conf/ext/anclwhaasindex/Resources/Private/Layouts/Test.html



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>

vorher TYPO3.CMS_7.6_Schnipsel#elseif