它不需要安裝任何形式的客戶端,兼容絕大多數(shù)主流瀏覽器,支持ASP.Net、ASP、ColdFusion 、PHP、Java、Active-FoxPro、Lasso、Perl、ython 等編程環(huán)境。
官方網(wǎng)站 http://www.fckeditor.net/
官方文檔 http://wiki.fckeditor.net/
下載地址 http://www.fckeditor.net/download/default.html
FCKeditor安裝和配置
下載FCKeditor2.63.zip和FCKeditor.NET2.63版的2個(gè)zip包
(a) FCKeditor_2.6.3是html文件、Javascript文件和圖片等資源文件
(b) FCKeditor.Net_2.6.3.zip是一個(gè)ASP.NET控件DLL文件
Asp.Net項(xiàng)目中添加對(duì) FCKeditor 的引用
1. 項(xiàng)目上選擇添加引用(Add Reference…),找到 瀏覽(Browse)標(biāo)簽,然后定位到你解壓好的FredCK.FCKeditorV2.dll,確認(rèn)就可以了
2. 為了方便RAD開發(fā),可以把FCKeditor控件也添加到VS的工具箱(Toolbox)上來,展開工具箱的常用標(biāo)簽組(General),右鍵選擇組件(Choose Items…),在對(duì)話框上直接找到瀏覽按鈕,定位FredCK.FCKeditorV2.dll,然后確認(rèn)就可以了
3. 配置Web.Config,在appSettings>節(jié)點(diǎn)添加,如下所示:
復(fù)制代碼 代碼如下:
appSettings>
add key="FCKeditor:BasePath" value="~/Web/fckeditor/"/>
add key="FCKeditor:UserFilesPath" value="~/Web/Upload/" />
/appSettings>
FCKeditor 的配置:
進(jìn)入FCKeditor文件夾,編輯 fckconfig.js 文件
1、修改:
復(fù)制代碼 代碼如下:
var _FileBrowserLanguage = ‘php' ; // asp | aspx | cfm | lasso | perl | php | py
var _QuickUploadLanguage = ‘php' ; // asp | aspx | cfm | lasso | php
為:
復(fù)制代碼 代碼如下:
var _FileBrowserLanguage = ‘a(chǎn)spx' ; // asp | aspx | cfm | lasso | perl | php | py
var _QuickUploadLanguage = ‘a(chǎn)spx' ; // asp | aspx | cfm | lasso | php
2、配置語言
修改:
FCKConfig.DefaultLanguage = ‘en' ;
改為:
FCKConfig.DefaultLanguage = ‘zh-cn' ;
3、配置皮膚,有default、office2003、silver風(fēng)格等,可以使用默認(rèn)。
FCKConfig.SkinPath = FCKConfig.BasePath + 'skins/default/' ;
4、在編輯器域內(nèi)可以使用Tab鍵。(1為是,0為否)
FCKConfig.TabSpaces = 0 ; 改為 FCKConfig.TabSpaces = 1 ;
5、加上幾種常用的字體:
FCKConfig.FontNames = ‘宋體;黑體;隸書;楷體_GB2312;Arial;Comic Sans MS;Courier New;Tahoma;Times New Roman;Verdana';
6、編輯器域內(nèi)默認(rèn)的顯示字體為12px,想要修改可以通過修改樣式表來達(dá)到要求,打開/editor/css/fck_editorarea.css,修改font-size屬性即可
7、關(guān)于安全性
如果你的編輯器用在前臺(tái)非認(rèn)證的情況下,推薦使用Basic的toolbar
FCKConfig.ToolbarSets["Basic"] = [
['Bold','Italic','-','OrderedList','UnorderedList','-','Link','Unlink','Image','-','About']
] ;
8、在上傳文件窗口點(diǎn)擊瀏覽服務(wù)器,可能會(huì)出現(xiàn) the server didn't send back a proper xml….. 錯(cuò)誤提示,是因?yàn)镕CKeditor要求不同類型的文件分別傳到不同的目錄,包括file,image,falsh,media 等目錄,可以先建立起來試試。
FCKEditor.NET 2.6 的安全性配置
文件上傳,一直是容易被利用的攻擊通道,呵呵,所以這里要重點(diǎn)提一下:
打開 editor/filemanager/connectors/aspx/config.ascx
復(fù)制代碼 代碼如下:
private bool CheckAuthentication()
{
//為了防止任意用戶均可以打開上傳頁或者瀏覽服務(wù)器文件
//建議將此處和你的后臺(tái)管理權(quán)限進(jìn)行集成,如果不需要驗(yàn)證,則直接返回 true 即可
//------------------------------------------------
//1. 假設(shè)你用 session 存儲(chǔ)用戶的登錄驗(yàn)證信息,假設(shè) session 的 key 為 auth
// 則需要返回
//return (Session["auth"] != null Session["auth"] == "驗(yàn)證值");
//2. 如果你用 FORM 驗(yàn)證方式,則可以驗(yàn)證
//return Page.User.Identity.IsAuthenticated;
// WARNING : DO NOT simply return "true". By doing so, you are allowing
// "anyone" to upload and list the files in your server. You must implement
// some kind of session validation here. Even something very simple as...
//
//return ( Session[ "IsAuthorized" ] != null (bool)Session[ "IsAuthorized" ] == true );
//
// ... where Session[ "IsAuthorized" ] is set to "true" as soon as the
// user logs in your system.
return true;
}
我對(duì)上面的部分進(jìn)行漢化和使用的說明s
您可能感興趣的文章:- FCKeditor 2.6.5 ASP環(huán)境安裝配置使用說明
- FCKeditor 2.6.6在ASP中的安裝及配置方法分享
- php在頁面中調(diào)用fckeditor編輯器的方法
- php下安裝配置fckeditor編輯器的方法
- php下FCKeditor2.6.5網(wǎng)頁編輯器的使用方法
- ASP FCKeditor在線編輯器使用方法
- 網(wǎng)頁編輯器FCKeditor 2.6.4精簡配置方法