您好,欢迎光临本网站![请登录][注册会员]  
文件名称: ext-2.3.0+CKEditor 3.0.1+ckfinder_asp_1.4配置详解及工程源码
  所属分类: Javascript
  开发工具:
  文件大小: 9mb
  下载次数: 0
  上传时间: 2009-12-12
  提 供 者: E_***
 详细说明: ext-2.3.0+CKEditor 3.0.1+ckfinder_asp_1.4配置详解 一、去http://cksource.com/下载这两个东西 二、去http://www.extjs.com/下载ext-2.3.0 三、将ext-2.3.0、CKEditor 3.0.1、ckfinder_asp_1.4,取出解压后的文件夹,真接放到站点根目录,目录结构为: WEBROOT |--ckeditor |--finder |--ext-2.3.0 |--js |--css 修改ckeditor目录下的config.js如下: CKEDITOR.editorConfig = function( config ) { config.language = 'zh-cn'; //配置语言 config.uiColor = 'DFE8F6'; config.skin = 'office2003'; config.height = 320; config.width = '100%'; config.font_names = '宋体/宋体;黑体/黑体;仿宋/仿宋_GB2312;楷体/楷体_GB2312;隶书/隶书;幼圆/幼圆;'+ confi g.font_names ; config.filebrowserUploadUrl = 'ckfinder/core/connector/asp/connector.asp?command=QuickUpload&type=Files'; config.filebrowserImageUploadUrl = 'ckfinder/core/connector/asp/connector.asp?command=QuickUpload&type=Images'; config.filebrowserFlashUploadUrl = 'ckfinder/core/connector/asp/connector.asp?command=QuickUpload&type=Flash'; config.filebrowserWindowWidth = '1000'; config.filebrowserWindowHeight = '700' }; 在js目录中加入ExtCkeditor.js: /**************************************************** * CKEditor Extension *****************************************************/ Ext.form.CKEditor = function(config){ this.config = config; Ext.form.CKEditor.superclass.constructor.call(this, config); }; Ext.extend(Ext.form.CKEditor, Ext.form.TextArea, { onRender : function(ct, position){ if(!this.el){ this.defaultAutoCreate = { tag: "textarea", autocomplete: "off" }; } Ext.form.TextArea.superclass.onRender.call(this, ct, position); CKEDITOR.replace(this.id, this.config.CKConfig); }, setValue : function(value){ Ext.form.TextArea.superclass.setValue.apply(this,[value]); CKEDITOR.instances[this.id].setData( value ); }, getValue : function(){ CKEDITOR.instances[this.id].updateElement(); return Ext.form.TextArea.superclass.getValue(this); }, getRawValue : function(){ CKEDITOR.instances[this.id].updateElement(); return Ext.form.TextArea.superclass.getRawValue(this); } }); Ext.reg('ckeditor', Ext.form.CKEditor); 在WEBROOT目录中加入demo3.html: Sample - CKEditor 需要修改和调整的地方: 一、提示如下问题 After installed CKFinder 1.4, I always get following error while trying to upload a file "The file browser is disabled for security reasons. Please contact your system administrator and check the CKFinder configuration file." Or in Chinese "因为安全原因,文件不可浏览. 请联系系统管理员并检查CKFinder配置文件." 解决办法: 1. There is no write access for the default upload folder $baseUrl = '/userfiles/'; in ckfinder/config.php. 对于目标文件夹$baseUrl = '/userfiles/';没有写入权限 2. This is maybe because the Return value of Funcation CheckAuthentication() is always FALSE by default in ckfinder/config.php. Change the Validation Condition according to your condition, not recommend to set the return value to true directly. 因为出于安全考虑ckfinder/config.php文件中的CheckAuthentication()函数默认返回值是false, 需要手动修改验证条件, 不建议直接返回true 二、CKfinder的破解 在ckfinder\core\js下的ckfinder_gecko.js和ckfinder_ie.js中查找“en.call(window,qo);”(注找引号内的内容),只能找到一处,屏蔽掉!参考(http://blog.csdn.net/bruceluo92/archive/2009/10/23/4720675.aspx) 三、注意修改一个路径,如果你将WEBROOT设为站点根目录,到这里就结束了,但如果你将站点设为虚拟目录,那么就要修改ckfinder中的 baseUrl = "/ckfinder/userfiles/" 这里使用的是绝对路径,我的办法是加上WEBROOT,即改为 baseUrl = "/WEBROOT/ckfinder/userfiles/" 你也可以想想使用相对路径的办法,但要设准确,否则会出错。 ...展开收缩
(系统自动生成,下载前可以参看下载内容)

下载文件列表

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度
  • 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.
 相关搜索: ext CKEditor ckfinder asp
 输入关键字,在本站1000多万海量源码库中尽情搜索: