Hi everyone,
I'm having a problem with FCKEditors add image feature, when you press browse server button it opens up all files to the user. Where I need to restrict the user to a single directory where he can see his own uploaded images. I think if I'm able to change the directory dynamically, it can solve my problem. We're trying to give the user the facility to add html to blog posts. It would be really nice to give each user his own directory that would appear when he presses the
Add Image button >browse server button
FYI, I've noticed that FCK editor has
private bool CheckAuthentication()
{
return false;
}
public override void SetConfig()
{
Enabled = CheckAuthentication();
UserFilesPath = "/userfiles/";
UserFilesAbsolutePath = "";
...
these two functions in the config.ascx control.
Any help would be greatly appreciated.
--
Imran Akram