Hi, yesterday I bought the lite version of this software. I must say that image management is a WOW addon!
I copied the files to the web folder wysiwyg
I can upload files to the default uploaded_images folder
I can create new folders at the uploaded_images floder
But when I change active directory to a subfolder and I try to upload an image to it, the contents of the subfolder do not show the new file, although that the message "Image uploaded successfully" is displayed. I also check the subfolder by ftp, and the image file is there
Anyway, I'm familiar with php, so I made the following changes to the get_images.php:
Original >>
if($ext == "" && @file_exists($current_folder.$file) && $name != ""){
$dirArray[] = $file;
}elseif(@file_exists($current_folder.$file) && $name != ""){
$fileArray[] = $file;
}
My version >>
if ($name!="") {
if($ext == ""){
$dirArray[] = $file;
}else{
$fileArray[] = $file;
}
}
Now I can see the subfolder contents, but I can not delete its files!!!
My config.php settings are:
$FULLDOMAIN = "http://www.faces.gr/";
$SETUP_FOLDER = "wysiwyg/"; // LEAVE BLANK FOR ROOT
$icon_folder = "http://www.faces.gr/wysiwyg/doctypes/";
$images_uploaded_to = "uploaded_images/";
$images_path = "../uploaded_images/";
Anyway, I uploaded the original version (without my modifications) to
http://www.faces.gr/wysiwyg/example.html so you can test it yourself
Thank you for your help in advance and sorry for my English!