2007年11月24日 星期六

FCKeditor設定

一:FCKeditoreditor下面可以只留editor資料夾,
與fckstyles.xml、fcktemplates.xml、fckconfig.js、fckeditor.js這四個檔案

二:FCKeditoreditorfilemanager下面的browser與upload資料夾內,
只留asp,aspx兩個資料夾

三:上傳檔案預設是使用asp,如果要用aspx,打開fckconfig.js將
var _FileBrowserLanguage = 'asp' ;
var _QuickUploadLanguage = 'asp' ;
改為
var _FileBrowserLanguage = 'aspx' ;
var _QuickUploadLanguage = 'aspx' ;
並在FCKeditor下面建立bin資料夾,並將FredCK.FCKeditorV2.dll放入。

上傳的預設資料夾是wwwrootUserFiles
如果要更改,打開FCKeditoreditorfilemanageruploadaspconfig.asp
修改下面的參數
ConfigUserFilesPath = "/UserFiles/"

四、若要自訂工具列,打開fckconfig.js
修改下面這一段,把不想要的拿掉。

FCKConfig.ToolbarSets["Default"] = [
['Source','DocProps','-','Save','NewPage','Preview','-','Templates'],
['Cut','Copy','Paste','PasteText','PasteWord','-','Print','SpellCheck'],
['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
['Form','Checkbox','Radio','TextField','Textarea','Select','Button','ImageButton','HiddenField'],
'/',
['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'],
['OrderedList','UnorderedList','-','Outdent','Indent'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'],
['Link','Unlink','Anchor'],
['Image','Flash','Table','Rule','Smiley','SpecialChar','PageBreak','UniversalKey'],
'/',
['Style','FontFormat','FontName','FontSize'],
['TextColor','BGColor'],
['FitWindow','-','About']
] ;

或是修改FCKConfig.ToolbarSets["Basic"] 裡面的內容。

沒有留言: