文件名称:ecshop更换ueditor
文件大小:2.76MB
文件格式:RAR
更新时间:2021-11-22 11:59:06
ECshop编辑器
ecshop更换百度ueditor插件相关信息如下: ecshop版本:ecshop2.7.3 编码格式:UTF-8 ueditor版本:1.4.3 1、打开admin/includes/lib_main.php文件 (1)找到:(大约在306-323行左右) /** * 生成编辑器 * @param string input_name 输入框名称 * @param string input_value 输入框值 */ function create_html_editor($input_name, $input_value = '') { global $smarty; $editor = new FCKeditor($input_name); $editor->BasePath = '../includes/fckeditor/'; $editor->ToolbarSet = 'Normal'; $editor->Width = '100%'; $editor->Height = '320'; $editor->Value = $input_value; $FCKeditor = $editor->CreateHtml(); $smarty->assign('FCKeditor', $FCKeditor); } 将这段代码修改为: /** * 生成编辑器 * @param string input_name 输入框名称 * @param string input_value 输入框值 */ function create_html_editor($input_name, $input_value = '') { global $smarty; $editor = new FCKeditor($input_name); $editor->BasePath = '../includes/fckeditor/'; $editor->ToolbarSet = 'Normal'; $editor->Width = '100%'; $editor->Height = '320'; $editor->Value = $input_value; $FCKeditor = $editor->CreateHtml(); $smarty->assign('FCKeditor', $FCKeditor); } 将这段代码修改为: /** * 生成编辑器 * @param string input_name 输入框名称 * @param string input_value 输入框值 */ function create_html_editor($input_name, $input_value = '') { global $smarty; $kindeditor=" <script id='editor' name='$input_name' type='text/plain' style='width:100%;height:500px;'>$input_value</script> <script type='text/javascript' charset='utf-8' src='../includes/ueditor/ueditor.config.js'></script> <script type='text/javascript' charset='utf-8' src='../includes/ueditor/ueditor.all.min.js'> </script> <script type='text/javascript' charset='utf-8' src='../includes/ueditor/lang/zh-cn/zh-cn.js'></script> <script> var ue = UE.getEditor('editor'); UE.getEditor('editor').focus(); </script> "; $smarty->assign('FCKeditor', $kindeditor); } (2)继续打开admin/templates/pageheader.htm,找到以下代码: {insert_scripts files="../js/transport.js,common.js"} 替换为: [removed][removed] [removed][removed] [removed][removed] [removed][removed] {insert_scripts files="../js/utils.js"} (3)把整个ueditor文件夹复制到您网站根目录下includes文件夹里面. 到此,百度ueditor已经可以使用了,可以添加商品,但是还有一些比如关联商品、关联文章时会报错,下面解决ajax和jQuery相关的兼容性问题。 备注:如需修改上传图片、视频、文件等保存路径,请打开includes/ueditor/php/config.json修改即可,默认保存路径是/images/upload/,可以修改为你想要的路径,的人也可以不用改。 2、把admin/js/jquery.js,admin/js/jquery.json.js,admin/js/selectzone_bd.js,admin/js/transport_bd.js复制到你网站的admin/js/目录下 3、复制一份admin/templates/pageheader.htm,将他命名为pageheader_bd.htm文件,然后打开这个文件 找到: [removed][removed] [removed][removed] [removed][removed] [removed][removed] {insert_scripts files="../js/utils.js"} 将这段代码修改为: <!-- 百度编辑器 begin --> {insert_scripts files="jquery.js,jquery.json.js,transport_bd.js,common.js"} <!-- 百度编辑器 end --> 4、打开admin/templates/article_info.htm文件 找到: {include file="pageheader.htm"} {insert_scripts files="../js/utils.js,selectzone.js,validator.js"} 将这段代码修改为: <!-- 百度编辑器 begin --> {include file="pageheader_bd.htm"} {insert_scripts files="../js/utils.js,selectzone_bd.js,validator.js"} <!-- 百度编辑器 end --> 5、打开admin/templates/goods_info.htm文件 找到: {include file="pageheader.htm"} {insert_scripts files="../js/utils.js,selectzone.js,colorselector.js"} 将这段代码修改为: <!--百度编辑器 begin --> {include file="pageheader_bd.htm"} {insert_scripts files="../js/utils.js,selectzone_bd.js,colorselector.js"} <!-- 百度编辑器 end --> 6、打开admin/templates/topic_edit.htm文件 找到: {include file="pageheader.htm"} {insert_scripts files="../js/utils.js,selectzone.js,colorselector_topic.js"} 将这段代码修改为: <!-- 百度编辑器 begin --> {include file="pageheader_bd.htm"} {insert_scripts files="../js/utils.js,selectzone_bd.js,colorselector_topic.js"} <!-- 百度编辑器 end --> 7、打开admin/article.php文件 找到:(大约在20行左右) require_once(ROOT_PATH . "includes/fckeditor/fckeditor.php"); 将这段代码修改为: /* 百度编辑器 begin */ //require_once(ROOT_PATH . "includes/fckeditor/fckeditor.php"); /* 百度编辑器 end */ 8、打开admin/goods.php文件 找到:(大约在107行左右) include_once(ROOT_PATH . 'includes/fckeditor/fckeditor.php'); // 包含 html editor 类文件 将这段代码修改为: /* 百度编辑器 begin */ //include_once(ROOT_PATH . 'includes/fckeditor/fckeditor.php'); // 包含 html editor 类文件 /* 百度编辑器 end */ 9、打开admin/magazine_list.php文件 (1)找到:(大约在61行左右,第一次出现的地方) include_once(ROOT_PATH.'includes/fckeditor/fckeditor.php'); // 包含 html editor 类文件 将这段代码修改为: /* mod by wengwenjin 百度编辑器 begin */ //include_once(ROOT_PATH.'includes/fckeditor/fckeditor.php'); // 包含 html editor 类文件 /* mod by wengwenjin 百度编辑器 end */ (2)找到:(大约在83行左右,第二次出现的地方) include_once(ROOT_PATH.'includes/fckeditor/fckeditor.php'); // 包含 html editor 类文件 将这段代码修改为: /* mod by wengwenjin 百度编辑器 begin */ //include_once(ROOT_PATH.'includes/fckeditor/fckeditor.php'); // 包含 html editor 类文件 /* mod by wengwenjin 百度编辑器 end */ 10、打开admin/topic.php文件 找到:(大约在75行左右) include_once(ROOT_PATH.'includes/fckeditor/fckeditor.php'); // 包含 html editor 类文件 将这段代码修改为: /* mod by wengwenjin 百度编辑器 begin */ //include_once(ROOT_PATH.'includes/fckeditor/fckeditor.php'); // 包含 html editor 类文件 /* mod by wengwenjin 百度编辑器 end */