ueditor官方地址:http://ueditor.baidu.com/website/download.html
2、Dedecms 程序 include文件夹下,创建 ueditor 文件夹
把下载到的ueditor文件扔进去(index.html不要)
3、includeincinc_fun_funAdmin.PHP 增加ueditor编辑器
找到
else if($GLOBALS['cfg_html_editor']=='ckeditor')
{
...中间代码省略
}
在它们的下面增加
//百度编辑器 else if($GLOBALS['cfg_html_editor']=='ueditor') { $fvalue = $fvalue=='' ? '解决多个百度编辑器同时使用-->'; $code .= '
打开 includeueditorPHPconfig.json
里面的
/ueditor/PHP/upload/image/
/ueditor/PHP/upload/video/
/ueditor/PHP/upload/file/
修改成自己的,如:
/uploads/allimg/
/uploads/video/
/uploads/file/
5、后台-系统-核心设置-Html编辑器,里面填上ueditor
完成
Dedecms织梦更换ueditor后栏目内容、单页无法保存问题的解决方法
打开
dede empletscatalog_add.htm (dede是你的后台目录)
dede empletscatalog_edit.htm
把里面的 form 放置到
内,就可以了。
若GBK网站替换后,中文出现乱码,可以参考这篇《织梦整合百度编辑器ueditor编码gbk中文乱码解决方法》
打开 includeueditorPHPction_upload.PHP 找到
include "Uploader.class.PHP";
在它下面加入
require_once("../../common.inc.PHP");
require_once("../../image.func.PHP");
再打开 includeueditorPHPUploader.class.PHP 找到
$this->stateInfo = $this->stateMap[0];
大概在124行左右
在它下面加入
@WaterImg($this->filePath,'down');
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。
相关推荐