我在信息页面中遇到了与HTML有关的奇怪问题。我输入的任何HTML都会在左侧和右侧添加\"
,因此以下iframe将转向此:
在:
<iframe src="http://www.google.com/"></iframe>
后:
<p><iframe src="\"http://www.google.com/\""></iframe></p>
OpenCart版本:1.5.5.1
答案 0 :(得分:1)
在root用点创建文件:.user.ini 把这个:
magic_quotes_gpc = Off
然后保存
答案 1 :(得分:0)
您正在将代码直接输入编辑器的WYSIWYG端。这将逃脱你所看到的所有html实体。
您需要做的就是点击“来源”按钮,然后将HTML放入此视图中。
答案 2 :(得分:0)
我设法通过在.htaccess中强制关闭magic_quotes来解决这个问题:
<IfModule mod_suphp.c>
suPHP_ConfigPath /home/user/public_html
</IfModule>