在使用PHPCMS后台自带的编辑器感觉不怎么方便,特别是截图不能直接粘贴,非常不方便,然后把自带的编辑器更换为了百度的编辑器,更换步骤具体如下
1、下载Ueditor
官网:https://ueditor.baidu.com/website/download.html
2、上传ueditor到phpcms目录
将压缩包解压后改名为ueditor,上传到网站
/statics/js/
目录下,
3、修改文件上传路径
修改
ueditor/php/config.json
文件
将
/ueditor/php/upload/
替换为 ./uploadfile/{yyyy}/{mm}{dd}/{yyyy}{mm}{dd}{time}{rand:6}
4、修改phpcms默认编辑器ckeditor为Ueditor
修改
/phpcms/libs/classes/form.class.php
文件,把编辑器调用方法
editor{}
里面所有内容替换为:
$str =''; if(!defined('EDITOR_INIT')) { $str .= ''; $str .= ''; $str .= ''; $str .= ''; define('EDITOR_INIT', 1); } $str .= "\r\n"; $str .= "var editor = UE.getEditor('$textareaid');"; $str .= ''; return $str;
5、修改ueditor宽度
在ueditor/themes/default/css/ueditor.css中,找到/*UI工具栏、编辑区域、底部*/下面的css:.edui-default .edui-editor,在其中添加:
width:auto!important; //用于ueditor工具栏的宽度自适应
往下找到.edui-editor-iframeholder,在其中也添加:width:auto!important; //用于ueditor内容框宽度自适应
发表评论
侧栏公告
寄语
譬如朝露博客是一个分享前端知识的网站,联系方式11523518。
热评文章
标签列表
热门文章
友情链接