so I want to change the image path for each user, trying it like this when calling the editor.
$editor=new CuteEditor();
$editor->ID="textarea";
$editor->Text="";
$editor->Draw();
$editor=null;
$editor->ImageGalleryPath = "/Uploads/".$user."/images";
The editor always wants to put the image in the root of Uploads, even if I take out the variable shown here and give a folder name in place of the variable. I haven't done anything with the installation of the editor. All the files are still original.
Also, is there a way to limit users from going up a level from their root, back to Uploads and seeing other users folders?
Thanks