码迷,mamicode.com
首页 > 其他好文 > 详细

DEDECMS:安装百度UEDITOR编辑器

时间:2020-09-11 14:24:59      阅读:47      评论:0      收藏:0      [点我收藏+]

标签:替换   als   相对   ueditor   conf   sharp   nbsp   成功   dedecms   

第一步:下载相对应编辑器的版本

首先,去百度搜索“百度ueditor编辑器”,然后点击进入官网,找到下载页面。找到我们想要的编辑器的版本,看自己网站的编码是UTF-8还是GBK,下载相应的下来,然后修改名称为“ueditor”,并进行打包上传到include目录下。

第二步:修改inc_func_funcAdmin.php文件

打开include下的inc文件夹内的inc_func_funcAdmin.php,搜索一下下面的代码:

else if($GLOBALS[‘cfg_html_editor‘]==‘ckeditor‘)

  在这一段代码前加入下面的代码:

else if($GLOBALS[‘cfg_html_editor‘]==‘ueditor‘)
	{
		$fvalue = $fvalue==‘‘ ? ‘<p></p>‘ : $fvalue;
		$code = ‘<script type="text/javascript" charset="utf-8"
		src="/include/ueditor/ueditor.config.js"></script>
		 <script type="text/javascript" charset="utf-8"
		src="/include/ueditor/ueditor.all.js"></script>
		<link rel="stylesheet" type="text/css"
		href="/include/ueditor/themes/default/css/ueditor.css"/>
		<textarea name="‘.$fname.‘" id="‘.$fname.‘"
		style="width:100%;">‘.$fvalue.‘</textarea>
		<script type="text/javascript">var ue = new
		baidu.editor.ui.Editor();ue.render("‘.$fname.‘");</script>‘;
		if($gtype=="print")
		{
		  echo $code;
		 }
		 else
		{
		 return $code;
		}
	}

  

第三步:修改配置 

进入网站后台-->系统-->系统基本参数-->核心设置-->将 Html编辑器的值改为 ueditor ,然后保存。 到了这一步,那么恭喜你,文本编辑器已经替换成功!

DEDECMS:安装百度UEDITOR编辑器

标签:替换   als   相对   ueditor   conf   sharp   nbsp   成功   dedecms   

原文地址:https://www.cnblogs.com/missbye/p/13586863.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!