• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    php下FCKeditor2.6.5网页编辑器的使用方法
    1、首先去官网下载FCKeditor2.6.5 多国语言版。http://ckeditor.com/download,注意:第一个为最新3.0.1版,第二个才是FCKeditor 2.6.5

    2、删除不必要的东西:

    删除/FCKeditor/目录下除fckconfig.js,fckeditor.js,fckstyles.xml,fcktemplates.xml,fckeditor.php,fckeditor_php5.php,fckeditor_php4.php
    七个文件以外的所有文件;
    删除目录/editor/_source(基本上,所有_开头的文件夹或文件都是可选的);
    删除/editor/filemanager/connectors/下除了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' ;
    要开启文件上传的话,还需要配置editor\filemanager\connectors\php\config.php
    将$Config['Enabled'] = false ;改为$Config['Enabled'] = true ;
    更改$Config['UserFilesPath'] = '/userfiles/' ;为你的上传目录;

    4.调用方法(例子)
    将FCKeditor放在网站根目录
    在PHP文件里面,包含/FCKeditor/fckeditor.php文件
    复制代码 代码如下:

    //包含fckeditor类
    include("../FCKeditor/fckeditor.php") ;
    //设置编辑器路径
    $sBasePath = "/FCKeditor/";
    //创建一个Fckeditor,表单的txtarea名称为content
    $oFCKeditor = new FCKeditor('content') ;
    $oFCKeditor->BasePath = $sBasePath ;
    //设置表单初始值
    $oFCKeditor->Value = 'This is some strong>sample text/strong>' ;
    $oFCKeditor->Create() ;

    //还可设置
    $oFCKeditor->Width
    $oFCKeditor->Height
    $oFCKeditor->ToolbarSet
    ......................................................................................................................................................
    textarea name="content" style="display:none">这是文章内容测试!/textarea>
    ?php
    include_once("fckeditor/fckeditor.php");

    $oFCKeditor=new fckeditor('content');
    $oFCKeditor->BasePath='fckeditor/';
    $oFCKeditor->value='default text in editor';
    $oFCKeditor->Width='800px';
    $oFCKeditor->Height='300px';
    $oFCKeditor->create();
    //$fck=$oFCKeditor->CreateHtml();
    ?>


    对于Fckeditor上传中文名文件时显示乱码的问题,现公布方法如下:
    测试环境:php 5 , utf-8编码

    1、修正上传中文文件时文件名乱码问题
    在文件connectors/php/commands.php中查找:
    $sFileName = $oFile['name'] ;
    在后面添加一行:
    $sFileName = iconv("utf-8","gbk",$sFileName);

    2、修正文件列表时中文文件名显示乱码问题
    在文件connectors/php/util.php中查找:
    return ( utf8_encode( htmlspecialchars( $value ) ) ) ;
    修改为:
    return iconv('','utf-8',htmlspecialchars( $value ));

    3、修正新建中文文件夹时的文件夹名乱码问题
    在文件connectors/php/commands.php中查找:
    $sNewFolderName =
    在后面添加一行:
    $sNewFolderName = iconv("utf-8","gbk",$sNewFolderName);

    2.6.3版及后续版本的fck下的html文件已经加了utf-8的文件头。

    下面是一些补充
    也许你经常进入网站的后台,或者发布文章什么的,你可以给你的文章添加不同的样式,不同的字体,什么的,也许你会想这是怎么做的呢,其实这很简单,只需要用下fckeditor这个小插件就可以实现,下面我们就看例子吧!
    在fckeditor官方网站 上下载最新的源码,http://ckeditor.com/download 下载最新的fckeditor 源码包。
    下载后就要配置了,源码包里面有fckeditor/_samples这个文件,这里面有写好的例子,可以直接运行,这样的话,你就可以参考这样的源文件,进行改写,需要注意的是,这里编辑器大部分都能用,上传图片却不能用,
    下面配置上传图片功能。

    打开文件FCKeditor/editor/filemanager/browser/default/connectors/php/config.php:
    查找$Config['Enabled'],将它设置为'true';查找$Config['UserFilesPath'],将它设置图片的目录,这个目录是相对于主目录的。 也就是说,这个目录是相对于根目录的,注意,如果你在本机上测试,那么,这个根目录就是 http://localhost ,

    这样基本配置已经写好了,下面就是我写的一个小例子,index.php

    Form name="form1" method="post" action="index.php" target="_blank">
    ?php
    //引用FCKeditor.php这个文件,基本的类和数据结构都在这里
    include("fckeditor/fckeditor.php") ;

    ?>
    input id="content" name="content" value="" type="hidden" /> iframe id="content___Frame" frameborder="0" height="100%" scrolling="no" width="100%" src="/test/bianyiqi/fckeditor/editor/fckeditor.html?InstanceName=contentToolbar=Default"> /iframe>
    input name ="haiyang" value="明天第一时间我会更好" type="text" />
    input type="submit" name="submit" value="提交" />
    /Form>

    ?php
    echo stripslashes($_POST['content']);
    echo "br/>";
    echo $_POST['haiyang'];
    ?>
    直接测试即可 ,注意,index.php 和fckeditor是在同一级目录下面的
    您可能感兴趣的文章:
    • PHP中CKEditor和CKFinder配置问题小结
    • 针对PHP环境下Fckeditor编辑器上传图片配置详细教程
    • 探讨fckeditor在Php中的配置详解
    • fckeditor编辑器在php中的配置方法
    • php下安装配置fckeditor编辑器的方法
    • php ckeditor上传图片文件名乱码解决方法
    • php fckeditor 调用的函数
    • fckeditor在php中的用法(添加于修改写成了函数)
    • 将FCKeditor导入PHP+SMARTY的实现方法
    • jQuery+PHP发布的内容进行无刷新分页(Fckeditor)
    • php版本CKEditor 4和CKFinder安装及配置方法图文教程
    上一篇:ASP.NET中FCKEDITOR在线编辑器的用法
    下一篇:fckeditor在php中的用法(添加于修改写成了函数)
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    php下FCKeditor2.6.5网页编辑器的使用方法 php,下,FCKeditor2.6.5,网页,