帝国CMS7.5整合ueditor 1.4.3百度编辑器教程
发布时间:2021-06-06作者:帝国建站网
帝国CMS7.5终于更新了自带的后台编辑器,但功能还是太少且很多地方有问题,所以很多人还是愿意用帝国CMS7.5整合了ueditor 1.4.3百度编辑器 UTF-8版本,下面将教程和自己修改优化过的百度编辑器ueditor 1.4.3分享给大家!
帝国CMS7.5整合ueditor 1.4.3百度编辑器教程:
1、请直接解压e目录的覆盖网站根目录下的e目录文件
备注:如果修改过后台默认admin目录的自行替换对应的文件。
2、编辑器后台使用的图片上传路径…等默认为相对路径,如果有多端的用户,希望使用绝对路径,请修改eextendueditorphpconfig.json 文件下的"imageUrlPrefix": "你的网址",
并且修改controller.php文件,将85行的://$CONFIG['imageUrlPrefix']=$public_r['fileurl']; 前面的两个注释符 // 去掉保存即可。
3、登录帝国CMS后台,单击“系统”-“数据表与系统模型”-“管理数据表”-在你使用的系统数据表点击“管理字段”(默认是新闻系统数据表,小编使用的是文章系统数据表,所以就修改文章系统数据表的“管理字段”)-“修改newstext字段”下面的“输入表单替换html代码(增加字段时请留空)”
复制粘贴以下代码提交即可:
<?php
$ziduan='newstext';//编辑器使用的字段名称
if($enews=='MAddInfo' || $enews=='MEditInfo'){//前台投稿
$qiantai=1;
$ziduanzhi=$ecmsfirstpost==1?"":DoReqValue($mid,$ziduan,stripSlashes($r[$ziduan]));
}else{//后台
$qiantai=0;
$ziduanzhi=$ecmsfirstpost==1?"":stripSlashes($r[$ziduan]);
}
?>
<script>var classid='<?=$classid?>',infoid='<?=$id?>',filepass='<?=$filepass?>',ehash='<?=$ecms_hashur[ehref]?>',qiantai='<?=$qiantai?>';//把参数传给编辑器,增加支持7.2版本的金刚模式</script>
<script type="text/javascript" charset="utf-8" src="<?=$public_r['newsurl']?>e/extend/ueditor/ueditor.config.js"></script>
<script type="text/javascript" charset="utf-8" src="<?=$public_r['newsurl']?>e/extend/ueditor/ueditor.all.min.js"></script>
<script type="text/javascript" charset="utf-8" src="<?=$public_r['newsurl']?>e/extend/ueditor/ueditor.toolbarconfig.js"></script>
<textarea id="<?=$ziduan?>" name="<?=$ziduan?>"><?=$ziduanzhi?></textarea>
<script type="text/javascript">
<?=$ziduan?>=UE.getEditor('<?=$ziduan?>',{
serverUrl: "<?=$public_r['newsurl']?>e/extend/ueditor/php/controller.php",//自己的请求接口
toolbars:Default,//工具栏配置文件,具体参考ueditor.toolbarconfig.js文件中说明
pageBreakTag:'',//帝国分页标签
initialFrameWidth:'100%',//编辑器宽
initialFrameHeight:300//编辑器高
//等等其它配置自行添加,参考UE默认配置文件复制修改即可
});
//自定义请求参数
<?=$ziduan?>.ready(function(){
<?=$ziduan?>.execCommand('serverparam',{
'filepass':'<?=$filepass?>',//修改时候是信息ID
'classid' :'<?=$classid?>',
'qiantai':<?=$qiantai?>
});
});
</script>
<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#DBEAF5">
<tr height="25">
<td bgcolor="#FFFFFF"> <input name="dokey" type="checkbox" value="1"<?=$r[dokey]==1?' checked':''?>>
关键字替换 <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>)
<input name="copyflash" type="checkbox" id="copyflash" value="1">
远程保存FLASH(地址前缀:
<input name="qz_url" type="text" id="qz_url" size="">
)</td>
</tr>
<tr height="25">
<td bgcolor="#FFFFFF"><input name="repimgnexturl" type="checkbox" id="repimgnexturl" value="1"> 图片链接转为下一页 <input name="autopage" type="checkbox" id="autopage" value="1">自动分页
,每
<input name="autosize" type="text" id="autosize" value="5000" size="5">
个字节为一页 取第
<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>相关专题
相关帝国教程
- 09-14在帝国模板里随机调用专题的灵动标签写法
- 08-18帝国CMS内容页附件中文显示或者显示代码名称下载
- 06-09帝国cms投票系统使用
- 11-29帝国模板首页调用最新10条附件信息
- 09-06帝国cms用SQL语句调用栏目导航一级栏目和二级栏目
- 04-16帝国CMS后台TAG管理中的清理多余tags信息有什么用?
- 04-21帝国CMS会员收藏夹去掉点击数展示方法和教程
- 02-13帝国CMS列表模板list.var如果信息没有图标就留空的技巧
- 11-03帝国CMS在首页列表页模板调用内容页下载地址的方法
- 02-08帝国CMS模板判断当前页面是否为首页、列表页和内容页的方法
- 01-31二次开发避免重复入库方法
- 11-22帝国CMS内容页调用当前栏目链接的方法!(很简单的方法)
- 10-08帝国cms内容页上一篇和下一篇另类调用方法
- 02-03帝国cms sql标签调用本月热点排行等
- 11-24帝国CMS百度编辑器ueditor前台代码高亮无法自动换行解决方法
- 06-03帝国CMS保存网址快捷方式到桌面
- 04-13帝国CMS信息反馈提示带*号必填的解决办法
- 11-08帝国CMS首页模板或其他非内容模板调用新闻正文字段newstext的方法
- 06-18帝国cms灵动标签时间格式转换date()函数使用方法教程
- 06-07帝国cms列表页模板自动把标题图片生成缩放图并调用出来