最好在这个文件夹下新建一个 images 文件夹。
步骤六:
配置 CKFinder:
编辑 ckfinder 目录下的 config.ascx 文件,修改 CheckAuthentication()函数,主要是为了防止
未经身份验证上传文件,非常重要的,八成的网站被黑就是这个原因。
修改后的代码如下:
public override 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 on your system.
if ("true"==Session["IsAuthorized"].ToString())
return true;
else
return false;
}
然后修改 SetConfig() 函数:
LicenseName = "";
LicenseKey = "";
分别表示许可用户名和许可密匙,如果不填写任何东西,将会以 demo 版本运行。
官方放出的测试许可密匙为:
LicenseName = "localhost:8888";
LicenseKey = "Y5K318TQ6QVWKBMLJ8KNLEZCD8D";
大家不妨可以试一下。
但是需要将测试网址设置成:localhost:8888
修改默认上传地址:
BaseUrl = "/ckfinder/userfiles/"; 修改成 BaseUrl = "/UploadFiles/";
BaseDir = ""; 这个不要修改。这个是设置服务器绝对路径用的,比 BaseUrl 优先寻址。所以
保持空值。
SecureImageUploads = true; 这个必须设置成 true, 避免网站被黑。
其他保持默认值,或自己根据英文提示修改。
步骤 7: