0

我有最新版本的 TYPO3,我在 RTE 中输入的数据在前端(站点内)没有正确呈现。

因此,例如<p>asdf</p>将显示在前端。

我用谷歌搜索并尝试了一些 RTE 默认配置更改,但效果不佳。

4

2 回答 2

1

Please try with some basic testing first.

  1. Create a new site on root level (directly below the globe). Create one content element with all text and styles you want to test.
  2. Create a new Typoscript template for this site and put the following in the setup section:

    page = PAGE
    page.10 < styles.content.get

Make sure to include CSS Styled content inside the static template section.

Now watch your page page in frontend. Does it work?

Otherwise try step 0. and create a new (admin) backend user first.

Most likely you have either a strange transformation rule inside your RTE config in backend (UserTS or PageTS) or you have some kind of htmlspecialchar definition for your frontend rendering.

于 2012-06-30T10:33:29.050 回答
0

请发布以下基本 Typo3 配置设置和/或告诉我们您是否使用了这些设置:

您是从较旧的 Typo3 版本升级的吗?可能是缺少某些配置。

Typo3后端中的根模板或站点模板,当您单击“模板”最左侧的菜单时,您可以创建或编辑一个

如果您选择“为新站点创建模板”按钮,则会自动创建最基本的 Typo3 Typoscript *

# Default PAGE object:
page = PAGE
page.10 = TEXT
page.10.value = HELLO WORLD!

您是否测试过这样的 TS(= Typoscript)?测试它并告诉我们它是否有效! 这对你有用吗?

  • (Typo3 自己的配置语言——既是祝福也是诅咒——可以如此简单也如此痛苦——我读过的最可笑的描述,你可以在 hatypo3.blogspot.de “意大利面条代码节”上找到)

不要错过包含“CSS 样式内容”(它的形式是“编辑整个模板 -> 包含”)但是如果您没有包含此内容,通常不会在前端显示网站内容。

另一种方法是将基本 TS 配置包含在一个或多个单独的文件中。要使文件正常工作,您必须在 BE 的站点模板中通过此代码段引用它们

   <INCLUDE_TYPOSCRIPT: source="FILE: yourfile">   
   # BTW I saw that it is common to place the file in a dir like 
   /fileadmin/ts/yourtyposcriptfile.ts

所以给我们这个信息或要求更多,如果我错过了什么。

于 2012-06-30T00:12:08.340 回答