在制作选择Html在线编辑器时,选择了FCKeditor,其实对在线编辑的功能并不需要很多,只要字体设置,图片插入即可。但发现FCKeditor功能强大,而且使用简单,就拿来主义,下面是我在使用FCKeditor2.4.2时的过程,本人是菜鸟中的菜鸟,一定有不少出错的地方,先说一声对不起!看到FCKeditor总是想到KFC,呵呵!
第一下载,在http://prdownloads.sourceforge.net/fckeditor/下载到最新版的FCK,然后是解压,把FCKeditor文件夹放入到网站文件夹中。
第二配置,2.4版本的配置比起以前的版本要简单许多,主要有
1.配置/fckeditor/fckconfig.js文件,在文件中找到一下两行:
var_FileBrowserLanguage=''asp'';// asp | aspx | cfm | lasso | perl | php | py
var_QuickUploadLanguage=''asp'';// asp | aspx | cfm | lasso | php
有自己的服务器技术取代,我使用的是php。
2.配置/fckeditor/editor/filemanager/browser/default/connectors/php/config.php,在该文件中找到这样一行:
$Config[''Enabled'']=false;将其改为$Config[''Enabled'']=true;
3.配置:/fckeditor/editor/filemanager/upload/php/config.php,修改$Config[''Enabled'']=false;为true
第三测试,在网站文件夹中建立测试文件test.php和value.php,其中value.php来显示Html结果.
test.php的文件的内容:
<form name="form1" action="value.php" method="post" >
<?php
include("FCKeditor/fckeditor.php") ;
$oFCKeditor = new FCKeditor(''FCKeditor1'') ;
$oFCKeditor->BasePath = ''./FCKeditor/'';
$oFCKeditor->Value = '''';
$oFCKeditor->Create() ;
?>
<INPUT type="submit" name="submit" value="提交">