FCKeditor的安裝(PHP)

來源:互聯網
上載者:User

1.下載新最版的FCKEditor,解壓
2.刪除/FCKeditor/目錄下除fckconfig.js, fckeditor.js, fckstyles.xml, fcktemplates.xml,fckeditor.php五個檔案以外的所有檔案
刪除目錄/editor/_source,_testcases(基本上,所有_開頭的檔案夾或檔案都是可選的),
刪除/editor/filemanager/browser/default/connectors/下除PHP目錄的所有目錄
刪除/editor/filemanager/upload/下的除PHP目錄的所有目錄
刪除/editor/lang/下的除了 en.js, zh.js, zh-cn.js三個檔案的所有檔案

3.
開啟/FCKeditor/fckconfig.js
修改
var FCKConfig.DefaultLanguage = 'zh-cn' ;
var _FileBrowserLanguage = 'php' ;
var _QuickUploadLanguage = 'php' ;
要開啟檔案上傳的話,還需要配置FCKeditor\editor\filemanager\upload\php\config.php以及\FCKeditor\editor\filemanager\browser\default\connectors\php\config.php
(上傳中文名檔案會亂碼)

4.調用方法
將FCKeditor放在網站根目錄
在PHP檔案裡面,包含/FCKeditor/fckeditor.php檔案
//包含fckeditor類
include("../FCKeditor/fckeditor.php") ;
//設定編輯器路徑
$sBasePath = "/FCKeditor/";
//建立一個Fckeditor,表單的名稱為ipaddr
$oFCKeditor = new FCKeditor('ipaddr') ;
$oFCKeditor->BasePath = $sBasePath ;
//設定表單初始值
$oFCKeditor->Value = 'This is some <strong>sample text</strong>' ;
$oFCKeditor->Create() ;

//還可設定
$oFCKeditor->Width
$oFCKeditor->Height
$oFCKeditor->ToolbarSet

5.定製
a.定製調用路徑
直接將FCKeditor目錄改為editor/,並且在調用的時候指定根路徑為/editor/。
b.定製風格
可以通過修改editor\skins目錄下的Skin來定製風格,主要是修改CSS。
c.定製toolbar

在fckconfig.js中,預設定製好了Default,Basic兩種toolbar,你也可以根據格式定製自己的toolbar,並且在php中使用$oFCKeditor->ToolbarSet=toolbarname調用

d.定製字型
將fckconfig.js裡面的FCKConfig.FontNames字型列表前面加上:
宋體;黑體;隸書;楷體_GB2312;
(注意儲存為UTF8格式)

e.關閉檔案上傳
i.將fckconfig.js裡面的FCKConfig.LinkBrowser,FCKConfig.ImageBrowser,FCKConfig.FlashBrowser,FCKConfig.LinkUpload,FCKConfig.ImageUpload,FCKConfig.FlashUpload設定為false.
ii.直接將filemanager裡面的php檔案刪降
iii.定製toolbars
最重要的一點,你需要更改filemanager下面的php檔案,只有認證的使用者才可以訪問。

f.注意事項:請用Editplus之類的編輯器編輯設定檔,注意儲存格式為utf8.

其它:
asp的安裝方法基本類似,將所有php換成asp就行了。
JSP平台下,需要把filemanager下的都刪除,再用Servlet替換,需要修改fckconfig.js裡面的幾個配置(LinkBrowserURL,ImageBrowserURL,FlashBrowserURL,LinkUploadURL ,FlashUploadURL ,ImageUploadURL )。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.