萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> FCKeditor配置教程

FCKeditor配置教程

首先刪除不必要的文件節省空間。凡是以_開頭的文件如_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' ;//添加中文字體

修改FCKeditor\editor\css\fck_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

修改fckeditor\editor\filemanager\browser\default\connectors\php
$Config['Enabled'] = true ;
$Config['UserFilesPath'] = '/UserFiles/' ;//設置上傳的文件夾,可自己指定

修改fckeditor\editor\filemanager\upload\php
$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' ; //fck
$oFCKeditor->Create() ;
?>
========================
取得數據
$sValue = addslashes( $_POST['FCKeditor1'] ) ;

顯示數據stripslashes,原因是addslashes函數加'加上了\'而stripslashes取還原由addslashes處理的數.

copyright © 萬盛學電腦網 all rights reserved