需要帮助在 Pyrocms 页面中添加 iframe
截至目前,我正在为我的项目使用pyrocms。但这个问题适用于所有使用编辑器/所见即所得/fckeditor 来更新内容的cms。
事情是我有一个 iframe,比如 facebook 按钮。我可以将它嵌入到页面中,因为它只是在输出页面中呈现代码。但如果我在我的页脚 html 页面中使用相同的内容,它就可以正常工作。有什么方法可以克服这个问题,而不是编写一个获取信息并渲染它的插件/小部件?
谢谢 戈格
As of now i'm using pyrocms for my projects. But the question is applicable to all cms which use an editor/WYSIWYG/fckeditor to update contents.
Thing is im having an iframe, say facebook like button. I couldn embed it in a page as it simply renders the code as such in the output page. But if i use the same in my footer html page, it's working fine. is there any way to overcome this rather than writing a plugin/widget that gets the info and render it?
Thanks
goG
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我重新启用了对模块的 XSS 支持,但页面是一个不应该被 XSS 过滤的模块(因为它没有前端数据输入)。
打开模块数据库表并将skip_xss设置为1。然后运行:
这将清除缓存,你会发现 iframe 不再被删除。
I re-eabled XSS support for modules but pages is a module that should not be XSS filtered (as it has no frontend data input anyway).
Open up the modules DB table and set skip_xss to 1. Then run:
that will clear the cache and you'll find iframes are not removed anymore.