Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/typo3/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/arduino/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Ckeditor 如何在TYPO3 8.7中实现RTE中的内联图像_Ckeditor_Typo3_Typo3 8.x - Fatal编程技术网

Ckeditor 如何在TYPO3 8.7中实现RTE中的内联图像

Ckeditor 如何在TYPO3 8.7中实现RTE中的内联图像,ckeditor,typo3,typo3-8.x,Ckeditor,Typo3,Typo3 8.x,我试图使RTE中的内联图像正常工作 我安装的扩展包括: rtehtmlarea 8.7.2和 rte_ckeditor_image 8.9.0,但我在旧版本中都尝试过 关于类型3 8.7.26 我的RTE配置如下: # Load default processing options imports: - { resource: "EXT:rte_ckeditor/Configuration/RTE/Full.yaml" } # Import the image plugin co

我试图使RTE中的内联图像正常工作

我安装的扩展包括: rtehtmlarea 8.7.2和 rte_ckeditor_image 8.9.0,但我在旧版本中都尝试过 关于类型3 8.7.26

我的RTE配置如下:

# Load default processing options
imports:
    - { resource: "EXT:rte_ckeditor/Configuration/RTE/Full.yaml" }
    # Import the image plugin configuration
    - { resource: "EXT:rte_ckeditor_image/Configuration/RTE/Plugin.yaml" }

editor:
  config:
    format_tags: "p;h3;h5"
    removePlugins: null
    externalPlugins:
        typo3image:
          allowedExtensions: "gif,jpg,jpeg,png,svg"
    removeButtons:
      - Strike
      - Anchor
      - Outdent
      - Indent
      - Blockquote
      - JustifyBlock
      - JustifyLeft
      - JustifyRight
      - JustifyCenter
      - HorizontalRule
      - BidiLtr
      - BidiRtl
      - Font
      - FontSize
      - Styles
在RTE中,我得到了一个预期的小图像图标。单击它会打开FAL浏览器,但拾取图像会导致js警报,并显示错误消息:

错误-未正确设置对主窗口的引用


如何调试这个?或者有没有一种扩展组合可以轻松工作?我是否缺少配置步骤?

这不是扩展版本或配置的问题。当我使用Google Chrome而不是Firefox时,它起了作用。

这不是扩展版本或配置的问题。当我使用Google Chrome而不是Firefox时,它就起作用了。

你不能使用旧的
rtehtmlarea
编辑器,而期望插件扩展和
rte\u ckeditor
的配置能起作用

rtehmlarea
有自己的方式来激活图像(在扩展配置中)

rte\u ckeditor\u image
将需要编辑器
rte\u ckeditor

如果同时使用/激活两个编辑器扩展,则可能会出现冲突。

可能您在这一冲突中出现了javascript错误(查看浏览器控制台中的错误)

您不能使用旧的
rtehtmlarea
编辑器,并期望
rte\u ckeditor
的插件扩展和配置能够正常工作

rtehmlarea
有自己的方式来激活图像(在扩展配置中)

rte\u ckeditor\u image
将需要编辑器
rte\u ckeditor

如果同时使用/激活两个编辑器扩展,则可能会出现冲突。

可能您在这一冲突中出现了javascript错误(查看浏览器控制台中的错误)

除了回答原始问题之外,不要使用答案。这是最好的评论(像这样)。更多信息:编辑并添加问题。除了回答原始问题外,不要使用“答案”。这是最好的评论(像这样)。有关更多信息:编辑您的问题并添加它。