您的位置:首页 > 编程语言 > ASP

this connector is disabled Please check the"editor/filemanager/connectors/aspx/config.aspx

2013-07-08 21:12 260 查看
使用FCKeditor时出现了这个错误,按照如下方法就可以了

FCKeditor出现"this connector is disabled Please check

the"editor/filemanager/connectors/aspx/config.aspx"错误的解决办法:

打开editor/filemanager/connectors/aspx/config.ascx修改CheckAuthentication()方法,返回true

C# code :

private bool CheckAuthentication()

{

// WARNING : DO NOT simply return "true". By doing so, you are allowing

// "anyone" to upload and list the files in your server. You must implement

// some kind of session validation here. Even something very simple as

//

// return ( Session[ "IsAuthorized" ] != null && (bool)Session[ "IsAuthorized" ] == true );

//

// where Session[ "IsAuthorized" ] is set to "true" as soon as the

// user logs in your system.

return true;

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐