|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
用C语言重新编写,包括可以访问数据库。他将这些程序和一些表单直译器整合起来,称为 PHP/FI。PHP/FI 可以和数据库连接,产生简单的动态网页程序。 FCKeditor2.3.2在线编纂器十分好用,完整撑持文件上传。明天百度了一下战书终究弄定了。 下载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' ;//添加中文字体
修正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' ;
$oFCKeditor->Create() ;
?>
JS用alert( FCKeditorAPI.GetInstance('FCKeditor1').GetXHTML( true ))失掉FCKeditor1的值;
PHP用$_POST['FCKeditor1']失掉FCKeditor1的值。
我想在讲述自己的学习方式前,对那些期望能从我的文章中获得有用信息的人说一句心里话: |
|