当前位置: 编程技术>java/j2ee
FCKeditor使用方法(FCKeditor_2.6.3)详细使用说明第1/2页
来源: 互联网 发布时间:2014-10-16
本文导语: 一.下载 官方下载首页:http://www.fckeditor.net/download/,使用的是FCKeditor_2.6.3.zip 和FCKeditor-2.3版本 二.部署 本例以WebRoot作为应用根路径,部署后的目录结构如下图所示: 1、FCKeditor_2.5.1.zip解压,将fckeditor文件夹复制到/WebRoot/下 2、FC...
一.下载
官方下载首页:http://www.fckeditor.net/download/,使用的是FCKeditor_2.6.3.zip
和FCKeditor-2.3版本
二.部署
本例以WebRoot作为应用根路径,部署后的目录结构如下图所示:
1、FCKeditor_2.5.1.zip解压,将fckeditor文件夹复制到/WebRoot/下
2、FCKeditor-2.3.zip解压,将commons-fileupload.jar和FCKeditor-2.3.jar复制到/WebRoot/WEB-INF/lib/下
3、修改/WebRoot/WEB-INF/web.xml文件,增加以下内容:
Connector
com.fredck.FCKeditor.connector.ConnectorServlet
baseDir
/UserFiles/
debug
true
1
SimpleUploader
com.fredck.FCKeditor.uploader.SimpleUploaderServlet
baseDir
/UserFiles/
debug
true
enabled
true
AllowedExtensionsFile
DeniedExtensionsFile
php|php3|php5|phtml|asp|aspx|ascx|jsp|cfm|cfc|pl|bat|exe|dll|reg|cgi
AllowedExtensionsImage
jpg|gif|jpeg|png|bmp
DeniedExtensionsImage
AllowedExtensionsFlash
swf|fla
DeniedExtensionsFlash
1
Connector
/fckeditor/connector
SimpleUploader
/fckeditor/simpleuploader
官方下载首页:http://www.fckeditor.net/download/,使用的是FCKeditor_2.6.3.zip
和FCKeditor-2.3版本
二.部署
本例以WebRoot作为应用根路径,部署后的目录结构如下图所示:
1、FCKeditor_2.5.1.zip解压,将fckeditor文件夹复制到/WebRoot/下
2、FCKeditor-2.3.zip解压,将commons-fileupload.jar和FCKeditor-2.3.jar复制到/WebRoot/WEB-INF/lib/下
3、修改/WebRoot/WEB-INF/web.xml文件,增加以下内容:
代码如下:
Connector
com.fredck.FCKeditor.connector.ConnectorServlet
baseDir
/UserFiles/
debug
true
1
SimpleUploader
com.fredck.FCKeditor.uploader.SimpleUploaderServlet
baseDir
/UserFiles/
debug
true
enabled
true
AllowedExtensionsFile
DeniedExtensionsFile
php|php3|php5|phtml|asp|aspx|ascx|jsp|cfm|cfc|pl|bat|exe|dll|reg|cgi
AllowedExtensionsImage
jpg|gif|jpeg|png|bmp
DeniedExtensionsImage
AllowedExtensionsFlash
swf|fla
DeniedExtensionsFlash
1
Connector
/fckeditor/connector
SimpleUploader
/fckeditor/simpleuploader