I want the FCK to be able to upload into dynamic folder (depending upon the logged in user) so that he will only be able to see this own directory and create subdirectories inside that directory.
I tried to play around with settings in fckeditor\editor\filemanager\connectors\php\config.php without success.
Has anyone encountered and solved similar paroblems?
Please help me
thanks
Samir
I tried to play around with settings in fckeditor\editor\filemanager\connectors\php\config.php without success.
Has anyone encountered and solved similar paroblems?
Please help me
thanks
Samir
Re: Upload into user specific dir.
If I get you corectlly you want to change upload folder dynamically, like say if you we re running a blog and would allow users to upload images and create folders for their blog created with fck, is that right?
If so, one way I did this was with php session, you start a session in both the config.php and the page you are running fck on, then you setup a session variable on that same page pointing to the desired dynamic folder, generated with php, then you insert that same session variable into config.php, something like that
Lemme know if it works for you, I havnt got it to work exactlly right on my side, but it does create folders dynamically!
Re: Upload into user specific dir.
I really appreciate your help
Re: Upload into user specific dir.
Thanks GCharb for the answer to this. You saved me a lot of work.