在 Drupal 6 中上传 IMCE 图像的 TinyMCE 不会用实际图像替换 [img] 标签
我的网站运行 Drupal 6。用户需要一种舒适的方式在他们的帖子中插入图像。 我有以下相关模块:WYSIWYG、TinyMCE、IMCE 和 IMCE Wysiwyg API 桥。 IMCE 非常适合浏览和上传图像;然后它会在帖子中插入一个 [img]/path/[/img] 。
当以管理员或匿名用户查看节点时,该标签显示为纯文本,而不是我们想要的图像。节点的输入格式是 Full HTML,我还在允许的标签中添加了 [img] 标签 - 没有区别。 我还搜索了 IMCE 问题队列,但没有提到这个问题。
有人知道如何解决这个问题吗?
My site runs Drupal 6. Users need a comfortable way to insert images in their posts.
I have the following relevant modules: WYSIWYG, TinyMCE, IMCE and IMCE Wysiwyg API bridge. IMCE works just fine for browsing and uploading images; it then inserts a [img]/path/[/img] into the post.
When viewing the node, both as administrator or anonymous user, this tag is displayed as plain text, not as the image we want. The input format of the node is Full HTML, I also added the [img] tag to allowed tags - no difference.
I also searched the IMCE issue queue, but there's no mention of this problem.
Does anybody know how to fix the problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
必须安装并启用图像辅助模块才能使内嵌图像正常工作。该模块将 [img] 标签转换为实际的 html。还必须在过滤器下的完整 HTML 输入格式上启用图像辅助过滤器。
您还必须检查完整 HTML 输入格式中过滤器的权重是否重要。我所有的过滤器都有相同的重量。我重新排列了它们,最后设置了“内联图像”过滤器 - 现在它可以工作了!
The Image Assist module must be installed and enabled for inline images to work. This module translates the [img] tags to actual html. The Image Assist filter must also be enabled on the Full HTML input format, under filters.
You must also check the weight of the filters in the Full HTML input format is important. All my filters had the same weight. I rearranged them, setting the "Inline images" filter last - and now it works!