Hi, i'm running CkFinder integration into CkEditor in ASP.NET, and i am launching it on c# side with the three lines of code in the page OnLoad event handler.
Everything works right except for the fact that it doesn't load the new resource directories i have added, and it only finds the "images" direcory (with all the images i have loaded in, so i might not be a path issue)
In another page i only load the CkFinder without the CKEditor integration, and i launch it with Javascript, what happens is: even though it reads the same configuration file, CkFinder this time loads all the directories i have added and it works.
In the docs i can't seem to find the spot where i can solve this on the c# side..
There must be a way to let CkFinder see its other directories by the time it gets integrated into CkEditor, but i'm still searching for it and i hope you can help me out with this.
Thank You Very Much
protected override void OnLoad( EventArgs e ) { CKFinder.FileBrowser _FileBrowser = new CKFinder.FileBrowser(); _FileBrowser.BasePath = "/ckfinder/"; _FileBrowser.SetupCKEditor( CKEditor1 ); }
Everything works right except for the fact that it doesn't load the new resource directories i have added, and it only finds the "images" direcory (with all the images i have loaded in, so i might not be a path issue)
In another page i only load the CkFinder without the CKEditor integration, and i launch it with Javascript, what happens is: even though it reads the same configuration file, CkFinder this time loads all the directories i have added and it works.
In the docs i can't seem to find the spot where i can solve this on the c# side..
There must be a way to let CkFinder see its other directories by the time it gets integrated into CkEditor, but i'm still searching for it and i hope you can help me out with this.
Thank You Very Much
Re: CkFinder into CkEditor:can't load new resource director
If the "type" parameter is not set then all the directories you have created in the configuration file show up on default.
It isn't really necessary to comment the line i just did it because i was sick of it :-S