当前位置:首页 > CMS教程 > 其它CMS > 列表

phpweb更换百度编辑器的配置教程

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-04 16:13:08 浏览: 评论:0 

phpweb是一个企业建站系统了可以快速的实现企业群站创建了,但这款使用的编辑器并不是百度编辑器对于小编来讲是非常喜欢百度编辑器了,下面一起来看看phpweb更换百度编辑器的配置.

准备工作:

1.从UEditor 官网上面下载 最新版本的UEditor,现在最新版本为ueditor1_4_3-utf8-php,请下载php版本。

2.我们更换的是 news 模块下的编辑器,也就是新闻模块,请确保news/admin/下面,news_conadd.php,news_conmod.php,已经破解出源码,如果没有,请自行百度!

开始动手:

1.解压下载的压缩包直接到phpweb根目录

2.打开news_conadd.php文件夹

找到以下代码:

  1. <input type="hidden" name="body" value="<?php echo $body; ?>" /> 
  2. <script type="text/javascript" src="../../kedit/KindEditor.js"></script> 
  3. <script type="text/javascript"
  4. var editor = new KindEditor("editor"); 
  5.  editor.hiddenName = "body"
  6.  editor.editorWidth = "680px"
  7.  editor.editorHeight = "300px"
  8.  editor.skinPath = "../../kedit/skins/default/"
  9.  editor.uploadPath = "../../kedit/upload_cgi/upload.php"
  10.  editor.imageAttachPath="news/pics/"
  11.  editor.iconPath = "../../kedit/icons/"
  12.  editor.show(); 
  13.    function KindSubmit() { 
  14. editor.data(); 
  15.  } 
  16.  </script> 

然后直接注释掉,或者删除,加入代码如下:

<script id="container" name="body" type="text/plain"></script>

然后在下面插入如下代码:

  1. <!-- 配置文件 --> 
  2. <script type="text/javascript" src="../../ueditor/ueditor.config.js"></script> 
  3. <!-- 编辑器源码文件 --> 
  4. <script type="text/javascript" src="../../ueditor/ueditor.all.js"></script> 
  5. <!-- 实例化编辑器 --> 
  6. <script type="text/javascript"
  7. var ue = UE.getEditor('container',{ 
  8.    initialFrameWidth:"800"
  9.    initialFrameHeight:"200" 
  10.   });
  11. </script> 

这样,新闻的添加就好了.

下面就是新闻的修改,步骤和添加一样只是在实例化编辑器后面加入如下代码:

  1. <script type="text/javascript"
  2. var ue = UE.getEditor('container',{ 
  3.    initialFrameWidth:"800"
  4.    initialFrameHeight:"200"
  5.    //开源软件:phpfensi.com 
  6.   }); 
  7.    
  8.   ue.ready(function() { 
  9.    //设置编辑器的内容 
  10.    ue.setContent('<?php echo htmlspecialchars_decode($body);?>'); 
  11.     
  12.     
  13.   }); 
  14.    
  15. </script> 

这样修改就可以了.

注意:更换完成编辑器后,原来phpweb自带的分页就不能使用了。

写在最后:百度UEditor 的上传图片路径是统一默认的,如果要修改,请打开 ueditor/php/config.json 下面进行修改.

Tags: phpweb编辑器 百度编辑器

分享到: