Looking to purchase CKFINDER. Need to know if CKFinder can read a directory and use it as a file manager as a remote way to read active directory home directories. When I give a path it just brings up the default image/flash/etc directories. Is there a way to get to just read the contents of the specified paths?
Thanks,
Matthew
Thanks,
Matthew

Re: Standalone Question
type = ResourceType.Add( "Images" ); type.Url = BaseUrl + "images/"; type.Dir = BaseDir == "" ? "" : BaseDir + "images/"; type.MaxSize = 0; type.AllowedExtensions = new string[] { "bmp", "gif", "jpeg", "jpg", "png" }; type.DeniedExtensions = new string[] { };type = ResourceType.Add( "Documents" ); type.Url = "http://example.com/documents/; type.Dir = "c:/www/example.com/documents/"; type.MaxSize = 0; type.AllowedExtensions = new string[] { "doc", "pdf" }; type.DeniedExtensions = new string[] { };Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+