Hello,
Is it possible to run CKFinder in a development enviroment? The reason for asking is I am presently using VS 2010 on a local computer with the ASP.NET Development Server. I made the changes per the installation instructions but when I run the website and select browse server button from CKEditor, file manager opens with an unkown error message and no files are displayed.
At this moment I'm returing true for the Check Authentication Method. I set BaseUrl = "/UserFiles/"; and for CKEditor I did the following on the code behind page.
protected void Page_Init(object sender, EventArgs e)
{
txtContent.Skin = "kama";
txtContent.FilebrowserBrowseUrl = Page.ResolveUrl("~/ckfinder/ckfinder.html");
txtContent.FilebrowserImageBrowseUrl = Page.ResolveUrl("~/ckfinder/ckfinder.html?type=Images");
txtContent.FilebrowserFlashBrowseUrl = Page.ResolveUrl("~/ckfinder/ckfinder.html?type=Flash");
txtContent.FilebrowserUploadUrl = Page.ResolveUrl("~/ckfinder/core/connector/aspx/connector.aspx?command=QuickUpload&type=Files");
txtContent.FilebrowserImageUploadUrl = Page.ResolveUrl("~/ckfinder/core/connector/aspx/connector.aspx?command=QuickUpload&type=Images");
txtContent.FilebrowserFlashUploadUrl = Page.ResolveUrl("~/ckfinder/core/connector/aspx/connector.aspx?command=QuickUpload&type=Flash");
}
Your help would be much appreciated.
Karl