移动 TinyMCEditor 后

发布于 2024-12-11 17:45:53 字数 863 浏览 0 评论 0原文

我将 ModX 移至新位置。 ModX 内部有一个 TinyMCEditor。

移动后,如果我将 html 粘贴到其中,TinyMCEditor 就会用奇怪的单词和反斜杠替换我的所有内容。

在旧的 TinyMCEditor 中工作的旧内容:

<img src="assets/images/Screen shot 2011-08-16 at 2.36.55 PM.png" alt="" width="145" height="60" />

粘贴后:

<img src="\&quot;assets/images/Screen" alt="\&quot;\&quot;" width="\&quot;145\&quot;" height="\&quot;60\&quot;" />

所以它不仅删除了实际图像,而且还将那些 &quot; jobbies 也扔在那里。

更新

我推断这个问题与 PHP 的 Magic Quotes 有关,如下所示:

神奇名言链接

但这是共享的服务器,并且我在任何地方都看不到可用的 PHP.ini 文件。还可以编辑此选项吗?

I moved ModX to a new location. Inside ModX there is a TinyMCEditor.

After the move, if I paste html into it, TinyMCEditor is replacing all my content with strange words and backslashes.

Old content which worked in old TinyMCEditor :

<img src="assets/images/Screen shot 2011-08-16 at 2.36.55 PM.png" alt="" width="145" height="60" />

After paste:

<img src="\"assets/images/Screen" alt="\"\"" width="\"145\"" height="\"60\"" />

So not only does it remove the actual image, but it also throw those " jobbies in there too.

Update

I have deduced this problem having something to do with PHP's Magic Quotes as reflected here :

Magic Quotes Link

But this is a shared server, and I don't see a PHP.ini file available anywhere. Is it still possible to edit this option?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寻梦旅人 2024-12-18 17:45:53

您可以尝试更改服务器的 .htaccess 文件并添加

php_flag magic_quotes_gpc Off

否则,您将需要在保存之前删除所有输入上的斜杠。

参考

http://php.net/manual/en/security.magicquotes .disabling.php

You can try altering the .htaccess file for the server and add

php_flag magic_quotes_gpc Off

Otherwise you will need to strip the slashes on all input before saving it.

ref

http://php.net/manual/en/security.magicquotes.disabling.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文