PHP中使用FCKeditor2.3.2配置

來源:互聯網
上載者:User

FCKeditor2.3.2線上編輯器非常好用,完全支援檔案上傳。今天baidu了一下午終於搞定了。 下載FCKeditor2.3.2,解壓至FCKeditor。

  1首先刪除不必要的檔案節省空間的。凡是以_開頭的檔案如_samples,_testcases和一些用不到的.asp、.jsp、.cfm檔案統統幹掉。

2修改fckconfig.js

FCKConfig.AutoDetectLanguage = true ;//是否自動檢測語言

FCKConfig.DefaultLanguage  = 'zh-cn' ;//設定語言

FCKConfig.SkinPath = FCKConfig.BasePath + 'skins/default/' ;//設定皮膚

FCKConfig.TabSpaces = 1 ;//tab是否有效

FCKConfig.ToolbarStartExpanded = true ;//編輯工具條是否出現,等點“展開工具列”時才出現

FCKConfig.FontNames  = '宋體;黑體;隸書;楷體_GB2312;Arial;Comic Sans MS;Courier New;Tahoma;Times New Roman;Verdana' ;//添加中文字型

修改FCKeditoreditorCSSfck_editorarea.css

設定預設字型及大小

body, td

{

 font-family: Arial, Verdana, Sans-Serif;

 font-size: 14px;

}

3關於檔案上傳的設定

修改fckconfig.js

var _FileBrowserLanguage = 'php' ; // asp | aspx | cfm | lasso | perl | php

var _QuickUploadLanguage = 'php' ; // asp | aspx | cfm | lasso | php

修改fckeditoreditorfilemanagerbrowserdefaultconnectorsphp

$Config['Enabled'] = true ;

$Config['UserFilesPath'] = '/UserFiles/' ;//設定上傳的檔案夾,可自己指定

修改fckeditoreditorfilemanageruploadphp

$Config['Enabled'] = true ;

$Config['UseFileType'] = true ;

$Config['UserFilesPath'] = '/UserFiles/' ;//同上要一樣

4引入線上編輯器時只需

<?php

include("fckeditor/fckeditor.php") ;

$oFCKeditor = new FCKeditor('FCKeditor1') ;//執行個體化

$oFCKeditor->BasePath = 'fckeditor/';//這個路徑一定要和上面那個引入路徑一致,否則會報錯:找不到fckeditor.html頁面

//$oFCKeditor->Value = '' ;

$oFCKeditor->Width = '100%' ;

$oFCKeditor->Height = '300' ;

$oFCKeditor->Create() ;

?>

JS用alert( FCKeditorAPI.GetInstance('FCKeditor1').GetXHTML( true ))得到FCKeditor1的值;

PHP用$_POST['FCKeditor1']得到FCKeditor1的值。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.