Hi,
anyone know a way to setup CKFinder runtime in Java/JSP page?
by PHP it's possbile to setup some properties by session attributes.
I need to set baseDir and basePath runtime to allow access by the users to some folder and not to other.
At the moment I have in session only the attribute CKFinder_UserRole, there is a way to set another attibute??
Thanks.
anyone know a way to setup CKFinder runtime in Java/JSP page?
by PHP it's possbile to setup some properties by session attributes.
I need to set baseDir and basePath runtime to allow access by the users to some folder and not to other.
At the moment I have in session only the attribute CKFinder_UserRole, there is a way to set another attibute??
Thanks.

Re: CKFinder setup Java/JSP
the documentation
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: CKFinder setup Java/JSP
I write a class that extends DefaultPathBuilder to override getBaseDir and getBaseUrl method but the compiler return a n error on getBaseUrl because not override or implement a method from a supertype.
any suggestion?
After I try to setup the url with a class that extends Configuration class, but in this way how can I access to session variable through ServeltConfig session?
Thanks
Re: CKFinder setup Java/JSP
public class CKFinderConfiguration extends DefaultPathBuilder { @Override public String getBaseUrl(HttpServletRequest request) { return (super.getBaseUrl(request)); } @Override public String getBaseDir(HttpServletRequest request) { return (super.getBaseDir(request)); } }Re: CKFinder setup Java/JSP