首先下载eWebEditor最新免费版,
名字叫做eWebEditor V4.6精简版,
但是其实功能没什么缺陷,就跟收费版V4.6是一样的。
地址是:。
第二步:
解压下载的eWebEditor V4.6精简版压缩文件,
将得到7个文件夹及3个文件,
只要将其中ewebeditor.htm文件的: config.ServerExt = "asp";
这段代码,
修改为: config.ServerExt = "php";
这样eWebEdito编辑器就可以在PHP系统上使用了(可见这个编辑器兼容性极强)。
将以上文件夹及文件全部完整上传到目录:<你的网站根目录//你的eWebEditor文件夹名>之下。
你的eWebEditor文件夹名最好自己编一个文件夹名,不要用eWebEditor这个名字,这样别人就找不到你的eWebEditor编辑器,提高网站的安全性。
第三步:
修改织梦DEDECMS的后台HTM文件,将eWebEditor插入其中,并替换原FCK文本编辑器。
比如你要替换添加文档页的FCK文本编辑器,
找到/dede/templets/article_add.htm文件。
将article_add.htm文件内如下代码段进行修改:
代码如下:
代码如下
<td>
<?php
GetEditor("body",$body,450);
?>
</td>
先将这段代码注释掉,效果如下: <td>
<!--<?php
GetEditor("body",$body,450);
?>-->
</td>
然后将
代码如下
<INPUT type="hidden" name="body" id="body" value="">< ID="eWebEditor1" src=http://www.dede58.com/"/include/你的ewebeditor文件夹/ewebeditor.htm?id=body&style=coolblue" frameborder="0" scrol="no" width="600" HEIGHT="350"></iframe>
插入注释前面,效果如下:
代码如下
<td>
<INPUT type="hidden" name="body" id="body" value="">
<iframe ID="eWebEditor1" src=http://www.dede58.com/"/include/你的ewebeditor文件夹/ewebeditor.htm?id=body&style=coolblue" frameborder="0" scrolling="no" width="600" HEIGHT="350"></iframe>
<!--<?php
GetEditor("body",$body,450);
?>-->
</td>
这样就完成了article_add.htm文件的修改工作。