this connector is disabled错误的解决方法
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;
}

关于FCKeditor,上传文件时提示invalid request
问题最终还是在FCKeditor的官方论坛解决了,感谢 rlohuis ,引用一下放过来。
本文介绍了解决FCKeditor在上传文件时遇到的invalidrequest错误的方法。通过在配置中明确指定上传资源类型为File,可以成功解决thisconnectorisdisabled的问题。
285

被折叠的 条评论
为什么被折叠?



