CKEditor 清除所有 SESSION 变量
我在网站后端使用 CKEditor,并且在加载时它会擦除所有 SESSION 变量...我不知道为什么会发生这种情况。
我以前用过它,但从来没有这样做过。与之前使用时相比,似乎没有什么新的或变化。
知道它可能是什么吗?它可能是特定于服务器的吗?
谢谢。
I am using CKEditor in the backend of a website and stragely enought it wipes all of the SESSION vars when it gets loaded... I have no clue as to why this happens.
I have used it before and it's never done this. Nothing seems to be new or changed from previous times it was used.
Any idea what it could be? Could it be server-specific?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
真是一堆废话......这样做的原因是指定:
$config['contentsCss']=array('inexistent.css','existent.css');
其中 inexistent.css 不存在,existent.css 存在...
这很有意义,如果您找不到 CSS 文件,只需刷新整个 $_SESSION 变量即可。
What a load of crap... the reason for this is specifying:
$config['contentsCss']=array('inexistent.css','existent.css');
Where inexistent.css does not exist and existent.css does...
That makes a lot of sense, if you can't find a CSS file just flush the whole $_SESSION variables.