流体动力 TYPO3 FLUX Fluidcontent - 前端没有输出?

Fluid Powered TYPO3 FLUX Fluidcontent - No Output in Frontend?

我用 Fluid powered TYPO3 - the first steps with the Pre-configured Distribution "Site 制作了 TYPO3-Installation 6.2.9" 没问题。我的 Site/Page-Template 已安装,我添加了所有 TypoScript 内容。

现在我想在 FLUX 中使用 FLUIDCONTENT (FCE)。我添加了一个新的 Template-File TeaserOne.html 并尝试使用 Distribution Content.html.

中的布局

现在我可以在后端看到并写入我的 input-fields,但我在前端没有输出?!我还需要什么?

我只看到 Content-Element 标题。不是 FLEXform。 我使用的是 flux (7.1.2)fluidpages (3.1.2)fluidcontent (4.1.1)fluid_core (1.0.2)vhs (2.1.4) 的最新版本。 静态模板 "fluidcontent_core" 已通过 pre-configured 分发包含。

myext/Resources/Private/Templates/TeaserOne.html

<div xmlns="http://www.w3.org/1999/xhtml" lang="en"
     xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers"
     f:schemaLocation="https://fluidtypo3.org/schemas/fluid-master.xsd"
     xmlns:flux="http://typo3.org/ns/FluidTYPO3/Flux/ViewHelpers"
     flux:schemaLocation="https://fluidtypo3.org/schemas/flux-master.xsd">

    <f:layout name="Content" />

    <f:section name="Configuration">

        <flux:form id="fluidcontenttest" options="{icon: 'Icons/Content/Hello.gif', group: 'New Elements'}">

            <flux:field.text name="teasertext" label="hier lorem eintragen" rows="5" cols="30" required="FALSE" />

        </flux:form>

    </f:section>

    <f:section name="Preview">

        <table width="100%">
            <tr>
                <td width="30%">Ausgabe:</td>
                <td width="70%">
                    <f:format.crop maxCharacters="100">{teasertext}</f:format.crop>
                </td>
            </tr>
        </table>

    </f:section>

    <f:section name="Main">
        <h3>TEST: I am a content element! But no Output?</h3>
        <p> {teasertext} </p>
    </f:section>
</div>

myext/Resources/Private/Layouts/Content.html

<f:layout name="Content" />
<f:render section="Main" />

似乎缺少 CType fluidcontent_content 的前端渲染配置。您是否将以下内容添加到 typo3conf/AdditionalConfiguration.php:

<?php
$GLOBALS['TYPO3_CONF_VARS']['FE']['contentRenderingTemplates'] = array('fluidcontentcore/Configuration/TypoScript/');