1

啊!我的TYPO3 6.2.11工作很好!然后我更新了我的所有内容FLUIDTYPO3-Extensions,现在我会收到一个错误:

Could not analyse class:FluidTYPO3\Flux\ViewHelpers\Flexform\SheetViewHelper maybe not loaded or no autoloader?

这是changelog,但对我来说没有明显的问题吗?流体TYPO3:

flux 7.1.2 => 7.2.0
fluidcontent_core 1.0.3 => 1.1.0
fluidcontent 4.1.1 => 4.1.2
fluidpages 3.1.2 => 3.2.0
vhs 2.3.0 => 2.3.1

我在所有模板和 FLUX-FCE 上更改了我的命名空间,xmlns:f但这无济于事。从

xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers"

<div xmlns="http://www.w3.org/1999/xhtml" lang="en"
     xmlns:f="http://typo3.org/ns/FluidTYPO3/Flux/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">

没有什么。

这是一场灾难……我的网站因该错误而崩溃。我希望有人可以帮助我......(永远不要在晚上 10 点之后更新;)

4

2 回答 2

6

Flux 中不再有 Flexform 命名空间。

将您的 ViewHelper 更改为

<flux:form.sheet .... >
...
</flux:form.sheet .... >

这必须对所有使用 old <flux:flexform... 命名空间的 ViewHelper 完成。

于 2015-03-19T07:00:32.750 回答
0

在我的 6.2 系统上,fluidpages 3.2.3 通量 7.2.1 vhs 2.3.3

它终于与:

<div xmlns="http://www.w3.org/1999/xhtml" lang="en"
xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers"
xmlns:v="http://typo3.org/ns/FluidTYPO3/Vhs/ViewHelpers"
xmlns:flux="http://typo3.org/ns/FluidTYPO3/Flux/ViewHelpers">

我从使用构建器扩展构建的扩展中得到了这个 - 文档中给出的代码不起作用。(我只使用了 Fluid 页面,没有 Fluid 内容)

上面针对整个模板的一些附加示例:

<div xmlns="http://www.w3.org/1999/xhtml" lang="en"
xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers"
xmlns:v="http://typo3.org/ns/FluidTYPO3/Vhs/ViewHelpers"
xmlns:flux="http://typo3.org/ns/FluidTYPO3/Flux/ViewHelpers">

<f:layout name="Default" />

<f:section name="Configuration">

    <flux:form id="default">

        <!-- Input field for Fluid variable 'pageClass' -->
        <flux:field.input name="settings.pageClass" default="onecol"/>

        <!-- Backend layout grid (TYPO3 6.x and greater only) -->
        <flux:grid>
            <flux:grid.row>
                <flux:grid.column colPos="0" name="Main" style="width: 75%" colspan="4" />

            </flux:grid.row>
        </flux:grid>

    </flux:form>

</f:section>



<f:section name="Body">

    <div class="container content">
        <div class="col-full">
         <!-- Render colPos=0 in this section -->
                <v:content.render column="0"/>    
        </div>
    </div>    

</f:section>

</div>

我不想知道每次这些约定的更改都会消耗多少开发人员时间......祝你好运!

于 2015-07-26T12:53:52.803 回答