..start..fly..

扫一扫
Guestbook

Home / PHP & Wordpress /Websites / PHP下的Fckeditor 2.6.4的使用和配置,并使之支持文件上传

<< 15个快速提高Alexa排名的方法blog、网站中添加RSS订阅代码 >>

参考了网络上的方法,现总结一下2.6.4版本的配置,本站讲解完整版的fckeditor,需要精简版的可以网上搜索到,本文最后附带fckeditor 2.6.4下载地址,fckeditor 2.6.4 版本中默认就是支持php的,所以不需要另外修改变量。

解压到站点后,首先是对fckconfig.js的配置:

修改语言:
FCKConfig.DefaultLanguage = ‘zh-cn’ ;

也可以修改工具栏按钮:
FCKConfig.ToolbarSets[“MyStyle”] = [
[‘Source’,’Preview’,’FitWindow’,’-‘,’Templates’],
[‘Undo’,’Redo’,’-‘,’Find’,’Replace’,’-‘,’SelectAll’,’RemoveFormat’],
[‘Image’,’Flash’,’Table’,’Rule’,’Smiley’,’SpecialChar’,’PageBreak’],
[‘ShowBlocks’],
‘/’,
[‘Bold’,’Italic’,’Underline’,’StrikeThrough’,’TextColor’,’BGColor’],
[‘OrderedList’,’UnorderedList’,’-‘,’Outdent’,’Indent’,’Blockquote’,’CreateDiv’],
[‘JustifyLeft’,’JustifyCenter’,’JustifyRight’,’JustifyFull’],
[‘Link’,’Unlink’,’Anchor’],
‘/’,
[‘Style’,’FontFormat’,’FontName’,’FontSize’]
// No comma for the last row.
] ;

然后重要的就是修改fckeditor\editor\filemanager\connectors\php\config.php(请注意,之前的版本目录结构有些不同)使之支持文件上传:

$Config[‘Enabled’] = true ;
$Config[‘UserFilesPath’] = ‘/mysite/upload/’ ;   //此路径是相对于服务器根目录而言的,当然这个目录要存在咯

这样就行了,用法这里就不多说了,还有一点需要注意的是用fckeditor上传图片的时候,对firefox的支持好像有点问题,不能浏览本地文件上传至服务器,算是一个bug吧

一个简单的使用例子:(其实只要基本上看懂了fckeditor_php5.php里面的东西,fckeditor也就会用了)

<?php

include_once(“fckeditor/fckeditor.php”);

$sBasePath = “/fckeditor/”;
$oFCKeditor = new FCKeditor(‘content‘) ;
$oFCKeditor->BasePath   = $sBasePath ;
$oFCKeditor->Height = ‘300’;

$oFCKeditor->ToolbarSet = ‘MyStyle’ ;

$oFCKeditor->Value  = ‘初始化内容’;
$oFCKeditor->Create();

?>

之后只要用$_POST[‘content’]就能获取文本框里面的值了。

Related Posts

转载原创文章请注明,转载自:SKY..fly..[www.sky.gs]

本文链接: https://www.sky.gs/websites/fckeditor-options.html

QR:  PHP下的Fckeditor 2.6.4的使用和配置,并使之支持文件上传

Leave a Reply

Code (☆)10+1=?


Websites powered by Wordpress6.4.3 Copyright © 2009-2024 - All Rights Reserved   SKY..fly..