如何在TYPO3 8.7.X中使用ckeditor将图像插入到tx_news中的正文中

时间:2018-10-12 09:39:47

标签: ckeditor typo3 typo3-8.x tx-news

我正在尝试使用rte_ckeditor_image插件中的news插件添加添加图像的功能。我已经完成了手册中描述的所有步骤(创建RTE文件夹,向ext_localconf.php文件添加代码片段),但是仍然缺少添加照片的可能性。

我做错了,还是news的插件无法处理?

P.S。有什么方法可以全局运行rte_ckeditor_image ext?还是必须分别配置每个插件?

1 个答案:

答案 0 :(得分:0)

我正在使用以下配置,即使在新闻中,它也能很好地运行:

FullAndImage.yaml

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

# Add configuration for the editor
# For complete documentation see http://docs.ckeditor.com/#!/api/CKEDITOR.config
editor:
  config:
    removePlugins: null
  externalPlugins:
      typo3image:
        allowedExtensions: "gif,jpg,jpeg,png,svg"
ext_localconf.php中的

$GLOBALS['TYPO3_CONF_VARS']['RTE']['Presets']['default'] = 'EXT:my_extension/Configuration/RTE/FullAndImage.yaml';

我从未为news配置CKEditor。

编辑:
还有一个提示:如果您升级了TYPO3,并且仍然具有用于旧编辑器rte_htmlarea的PageTS,那么最好是删除旧配置。它可以在新的编辑器rte_ckeditor中弄乱某些内容。我不知道是否有人在新编辑器中验证了哪些旧参数令人不安或产生了哪些影响,因此,仅删除旧配置是最简单的解决方案。