AARGH!我的TYPO3 6.2.11
工作得很好!然后我更新了所有FLUIDTYPO3-Extensions
,现在我会收到错误:
Could not analyse class:FluidTYPO3\Flux\ViewHelpers\Flexform\SheetViewHelper maybe not loaded or no autoloader?
这是changelog,但对我来说没有明显的问题? FluidTYPO3:
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点以后更新;)
答案 0 :(得分:5)
Flux中不再有Flexform命名空间。
将ViewHelper更改为
<flux:form.sheet .... >
...
</flux:form.sheet .... >
必须对使用旧<flux:flexform
...命名空间的所有ViewHelper执行此操作。
答案 1 :(得分:0)
在我的6.2系统上 流体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>
我不想知道开发时间有多少小时,这些约定每次都会烧毁...... 祝你好运!