如何在 TYPO3 8.7.X 中使用 ckeditor 在 tx_news 中将图像插入正文
How to insert images to bodytext in tx_news using ckeditor in TYPO3 8.7.X
我正在尝试在 news
插件中添加使用 rte_ckeditor_image
插件添加图像的功能。我已经完成了手册中描述的所有步骤(创建 RTE 文件夹,将代码片段添加到 ext_localconf.php
文件),但仍然缺少添加照片的可能性。
我做错了什么或者news
的插件不处理?
P.S。有什么方法可以全局 运行 rte_ckeditor_image
ext 还是我必须单独配置每个插件?
我正在使用以下配置,即使在新闻中也能正常工作:
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 并且仍然有旧编辑器的 PageTS rte_htmlarea
那么最好只删除旧配置。它能够在新编辑器中搞砸一些事情 rte_ckeditor
。我不知道是否有人验证过哪些旧参数在新编辑器中令人不安或产生了哪些影响,因此删除旧配置是最简单的解决方案。
我正在尝试在 news
插件中添加使用 rte_ckeditor_image
插件添加图像的功能。我已经完成了手册中描述的所有步骤(创建 RTE 文件夹,将代码片段添加到 ext_localconf.php
文件),但仍然缺少添加照片的可能性。
我做错了什么或者news
的插件不处理?
P.S。有什么方法可以全局 运行 rte_ckeditor_image
ext 还是我必须单独配置每个插件?
我正在使用以下配置,即使在新闻中也能正常工作:
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 并且仍然有旧编辑器的 PageTS rte_htmlarea
那么最好只删除旧配置。它能够在新编辑器中搞砸一些事情 rte_ckeditor
。我不知道是否有人验证过哪些旧参数在新编辑器中令人不安或产生了哪些影响,因此删除旧配置是最简单的解决方案。