评论

收藏

[帝国CMS] 帝国cms整合百度编辑器ueditor图文教程

建站程序 建站程序 发布于:2021-07-19 13:23 | 阅读数:553 | 评论:0

一、UEditor简介
帝国cms自带文本编辑器是fckeditor,用起来效果不太理想。
百度也推出了自己的编辑器UEditor
UEditor是由WEB前端研发部开发的所见即所得的开源富文本编辑器,具有轻量、可定制、用户体验优秀等特点。开源基于BSD协议,所有源代码在协议允许范围内可自由修改和使用。百度UEditor的推出,可以帮助不少网站开者在开发富文本编辑器所遇到的难题,节约开发者因开发富文本编辑器所需要的大量时间,有效降低了企业的开发成本。
下边先来贴出几张相片浏览一下百度编辑器UEditor一些特色功能吧!
DSC0000.jpg
DSC0001.jpg

DSC0002.jpg

DSC0003.jpg

DSC0004.jpg

二、帝国CMS6.6整合UEditor
1.根据自己cms的版本下载相应版本ueditor1.2.2_GBK.rar,ueditor1.2.2_utf8.rar
2.上传至帝国cms的/e/data/ecmseditor/下
3.修改字段输入表单,具体操作:系统-->新建表与系统模型-->管理数据表-->管理字段
如下图所示
DSC0005.jpg

DSC0006.jpg

DSC0007.jpg

4.将下列代码复制入下图所示红框内

代码如下:
<script type="text/javascript" src="/e/data/ecmseditor/ueditor/editor_config_admin.js"></script>  
<script type="text/javascript" src="/e/data/ecmseditor/ueditor/editor_all_min_admin.js"></script>  
<link rel="stylesheet" href="/e/data/ecmseditor/ueditor/themes/default/ueditor.css">  
<script type="text/plain" id="myEditor" name="newstext">  
<?=$ecmsfirstpost==1?"":stripSlashes($r[newstext])?>  
</script>  
<script type="text/javascript">  
var editor = new baidu.editor.ui.Editor();  
editor.render("myEditor");  
editor.classid = <?=$classid?>;  
editor.filepass = <?=$filepass?>;  
</script>  
<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#DBEAF5">  
      <tr>   
      <td bgcolor="#FFFFFF"> <input name="dokey" type="checkbox" value="1"<?=$r[dokey]==1?' checked':''?>>  
        关键字替换&nbsp;&nbsp; <input name="copyimg" type="checkbox" id="copyimg" value="1">  
    远程保存图片(  
    <input name="mark" type="checkbox" id="mark" value="1">  
    <a href="SetEnews.php" target="_blank">加水印</a>)&nbsp;&nbsp;   
    <input name="copyflash" type="checkbox" id="copyflash" value="1">  
    远程保存FLASH(地址前缀:   
    <input name="qz_url" type="text" id="qz_url" size="">  
        )</td>  
      </tr>  
      <tr>  
            
  <td bgcolor="#FFFFFF"><input name="repimgnexturl" type="checkbox" id="repimgnexturl" value="1"> 图片链接转为下一页&nbsp;&nbsp; <input name="autopage" type="checkbox" id="autopage" value="1"> 自动分页  
    ,每   
    <input name="autosize" type="text" id="autosize" value="5000" size="5">  
    个字节为一页&nbsp;&nbsp; 取第   
    <input name="getfirsttitlepic" type="text" id="getfirsttitlepic" value="" size="1">  
    张上传图为标题图片(   
    <input name="getfirsttitlespic" type="checkbox" id="getfirsttitlespic" value="1">  
    缩略图: 宽   
    <input name="getfirsttitlespicw" type="text" id="getfirsttitlespicw" size="3" value="<?=$public_r[spicwidth]?>">  
    *高  
    <input name="getfirsttitlespich" type="text" id="getfirsttitlespich" size="3" value="<?=$public_r[spicheight]?>">  
    )</td>  
      </tr>  
</table>
DSC0008.jpg
DSC0009.jpg

5./e/admin/AddNews.php,333行 <html>之上增加一行添加代码来解决某些浏览器可能错位问题

代码如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
6.关闭网页,重新启动。

关注下面的标签,发现更多相似文章