Fluid FlexForms are not loaded after upgradding Fluid Content Engine to 4.2.3

时间:2015-06-30 13:56:53

标签: typo3 fluid

All my custom fluid content element working fine. But today when i upgrade Fluid Content Engine extension to 4.2.3 my fluid flexform is not loaded. I think this is bug in new version of Fluid Content Engine 4.2.3.

I used Below Extensions in which its working fine.

  • vhs 2.3.3
  • flux 7.2.1
  • fluidcontent 4.2.2
  • fluidpages 3.2.3

And added below typoscript for fluid content rendering.

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/
    }
}

And in ext.tables.php i added below code.

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

It works fine but after upgradding to Fluid Content Engine 4.2.3 fluid flexform is not loaded.

1 个答案:

答案 0 :(得分:1)

github上已经存在一个问题,并且可以通过删除Configuration/TCA/Overrides/tt_content.php中的第22行来自行应用。您必须删除的行是

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

您当然也可以切换回4.2.2并等待修复。

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