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

将Ecshop后台fckeditor升级更改为kindeditor 4.1.10编辑器

时间:2014-10-04 01:14:35      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:des   style   http   color   io   使用   ar   for   strong   

ecshop在win8部分电脑上,不管用任何浏览器,都打不开,即使升级到最新版本都不行,问题应该吃在fckeditor兼容上。fckeditor 很久未升级,换掉该编辑器是最佳方法

第一步:下载kindeditor,下载地址为:http://www.kindsoft.net/down.php 下载最新版本的,现在是4.1.10
下载之后,把里面不要的语言和演示文件删除,有,asp、asp.net jsp和examples四个文件夹删掉。

把文件夹改名为:kindeditor,然后上传到根目录includes/下面,和fckeditor同一级就是了。以后可以把fckeditor删除了。

第二步:修改admin/includes/lib_main.php把里面的create_html_editor方法修改为创建kindeditor的内容:
直接替换就ok了:

function  create_html_editor ($input_name, $input_value = ‘‘)
{
   global $smarty;
   $kindeditor="<script charset=‘utf-8‘ src=‘../includes/kindeditor/kindeditor-min.js‘></script>
    <script>
       var editor;
          KindEditor.ready(function(K) {
               editor = K.create(‘textarea[name=\"$input_name\"]‘, {
                  allowFileManager : true,
                   width : ‘700px‘,
                   height: ‘300px‘,
                   resizeType: 0   //固定宽高
               });
           });
   </script>
   <textarea id=\"$input_name\" name=\"$input_name\" style=‘width:700px;height:300px;‘>$input_value</textarea>
    ";

   $smarty->assign(‘FCKeditor‘, $kindeditor);  //这里前面的 FCKEditor 不要变 
} 

第三步:修改文件上传路径

修改kindeditor/php目录下面的upload_json.php里面的
//文件保存目录路径
$save_path = $php_path . ‘../../../images/upload/‘;
//文件保存目录URL
$save_url = $php_url . ‘../../../images/upload/‘;


kindeditor默认上传图片的路径是upload下面的image目录下面,以年月日为目录,如:image/20130401 我们把它修改为:以年月划分比较好。
在upload_json.php找到$ymd = date("Ymd"); 改为:$ymd = date("Ym");就可以了。

第四步:浏览服务器路径修改
修改includes/kindeditor/php/file_manager_json.php


//根目录路径,可以指定绝对路径,比如 /var/www/attached/
$root_path = $php_path . ‘../../../images/upload/‘;
//根目录URL,可以指定绝对路径,比如 http://www.yoursite.com/attached/
$root_url = $php_url . ‘../../../images/upload/‘;


第五步:注释掉goods.php和article.php文件中关于fckeditor的路径
注释掉goods.php 文件的第107行

//    include_once(ROOT_PATH . ‘includes/fckeditor/fckeditor.php‘); // 包含 html editor 类文件 

注释掉article .php 文件的第19行

//    require_once(ROOT_PATH . "includes/fckeditor/fckeditor.php");
 
如果发现商品页出现提交内容为空白的时候,需要在提交时做一次同步,打开文件“\admin\templates\goods_info.htm,找 到”document.forms[‘theForm‘].submit();“,大概在第508行,在这行代码前增加同步的js代码:
editor.sync();//同步编辑框的文字;
document.forms[‘theForm‘].submit(); 
 
最后一步在admin/template/goods_info.htm中 将提交按钮
 
<input type=”button” value=”{$lang.button_submit}” on click=”validate(‘{$goods.goods_id}’)” />
 
修改为
 
<input type=”submit” value=”{$lang.button_submit}” on click=”validate(‘{$goods.goods_id}’)” />
 
ok,大功告成,在ecshop最新版本亲测正常使用。

ecshop编辑器fckeditor换百度ueditor编辑器教程

http://www.zuimoban.com/php/ecshop/1886.html

将Ecshop后台fckeditor升级更改为kindeditor 4.1.10编辑器

标签:des   style   http   color   io   使用   ar   for   strong   

原文地址:http://www.cnblogs.com/wawahaha/p/4005463.html

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