2015-06-30 18 views
0

我的所有自定義流體內容元素都能正常工作。但是今天當我將流體內容引擎擴展升級到4.2.3時,我的流體柔性未加載。我認爲這是Fluid Content Engine 4.2.3新版本中的錯誤。將流體內容引擎升級到4.2.3後,不會加載流體FlexForms

我使用Below Extensions中的工作正常。

  • VHS 2.3.3
  • 通量7.2.1
  • fluidcontent 4.2.2
  • fluidpages 3.2.3

而下面的TypoScript添加用於流體內容渲染。

plugin.tx_mytemplate.view { 
     templateRootPath = EXT:mytemplate/Resources/Private/Templates/ 
     partialRootPath = EXT:mytemplate/Resources/Private/Partials/ 
     layoutRootPath = EXT:mytemplate/Resources/Private/Layouts/ 

    } 

plugin.tx_fluidpages { 
    collections.mytemplate { 
     templateRootPath = EXT:mytemplate/Resources/Private/Templates/ 
     partialRootPath = EXT:mytemplate/Resources/Private/Partials/ 
     layoutRootPath = EXT:mytemplate/Resources/Private/Layouts/ 
    } 
} 

plugin.tx_fluidcontent { 
    collections.mytemplate { 
     templateRootPath = EXT:mytemplate/Resources/Private/Templates/ 
     partialRootPath = EXT:mytemplate/Resources/Private/Partials/ 
     layoutRootPath = EXT:mytemplate/Resources/Private/Layouts/ 
    } 
} 

而在ext.tables.php我添加了下面的代碼。

\FluidTYPO3\Flux\Core::registerProviderExtensionKey($_EXTKEY, 'Content'); 
\FluidTYPO3\Flux\Core::registerProviderExtensionKey($_EXTKEY, 'Page'); 

它工作正常,但在升級到Fluid Content Engine 4.2.3流體flexform後未加載。

回答

1

github上已經有一個問題,並且可以通過刪除第012行中的第22行來應用自己。你必須刪除該生產線是

--div--;LLL:EXT:cms/locallang_ttc.xlf:tabs.appearance 

你當然也可以切換回4.2.2,等待修復。

https://github.com/FluidTYPO3/fluidcontent/issues/243