sorry..i should not have posted this in the other forum...
my question is in regards to how i want to be able to browse an existing folder i use to store images on my server.
i already have a folder with a path of /home/site/myimages that contains subfolders and images already. is it possible to have fckeditor use that path and show the existing folders/images? i don't like how fckeditor just puts everything in the 'image' folder and doesn't allow you to see folders that already exist on the server. can someone tell me how to go about this and what files to modify:?:
Thanks very much!
my question is in regards to how i want to be able to browse an existing folder i use to store images on my server.
i already have a folder with a path of /home/site/myimages that contains subfolders and images already. is it possible to have fckeditor use that path and show the existing folders/images? i don't like how fckeditor just puts everything in the 'image' folder and doesn't allow you to see folders that already exist on the server. can someone tell me how to go about this and what files to modify:?:
Thanks very much!

Re: showing existing image folders/files
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: showing existing image folders/files
thanks!
Re: showing existing image folders/files
Re: showing existing image folders/files
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: showing existing image folders/files
// Path to user files relative to the document root. $Config['UserFilesPath'] = '' ; // Fill the following value it you prefer to specify the absolute path for the // user files directory. Usefull if you are using a virtual directory, symbolic // link or alias. Examples: 'C:\\MySite\\userfiles\\' or '/root/mysite/userfiles/'. // Attention: The above 'UserFilesPath' must point to the same directory. $Config['UserFilesAbsolutePath'] = '/home/httpd/html/vhosts/mysite/editor/imagenew/' ; $Config['AllowedExtensions']['Image'] = array('jpg','gif','jpeg','png') ; $Config['DeniedExtensions']['Image'] = array() ; $Config['FileTypesPath']['Image'] = $Config['UserFilesPath'] . 'http://www.mysite.com/editor/imagenew/' ; $Config['FileTypesAbsolutePath']['Image']= ($Config['UserFilesAbsolutePath'] == '') ? '' : $Config['UserFilesAbsolutePath']; $Config['QuickUploadPath']['Image'] = $Config['UserFilesPath'] ; $Config['QuickUploadAbsolutePath']['Image']= $Config['UserFilesAbsolutePath'] ;Re: showing existing image folders/files
// Path to user files relative to the document root. $Config['UserFilesPath'] = '/editor/imagenew/' ; // absolute path for the userfiles directory $Config['UserFilesAbsolutePath'] = '/home/httpd/html/vhosts/mysite/editor/imagenew/' ; $Config['AllowedExtensions']['Image'] = array('jpg','gif','jpeg','png') ; $Config['DeniedExtensions']['Image'] = array() ; $Config['FileTypesPath']['Image'] = $Config['UserFilesPath'] ; $Config['FileTypesAbsolutePath']['Image']= $Config['UserFilesAbsolutePath']; $Config['QuickUploadPath']['Image'] = $Config['UserFilesPath'] ; $Config['QuickUploadAbsolutePath']['Image']= $Config['UserFilesAbsolutePath'] ;Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: showing existing image folders/files
I have tried doing that with all the above suggestions, but still not managed to get absolute paths in the source of images.
Is there anything else that has to be changed? Could someone give me a step by step instructions for getting this to work?
Re: showing existing image folders/files