HI all,
I need help with Resource Browser. I am using Cold Fusion for backend and I was able to set up all the paths cept the file browser. I've tried modifying config.cfm and connector.cfm in the browser/connector folder but didn't make any difference.
I do have <cfset application.FCKeditor.userFilesPath = "/login/images/"> in the application.cfm which works fine for other parts such as file upload.
When I upload image via file browser it creates folder outside of my site with the site root folder name + image, so if my site root folder is "e:\MySite\" it crates folder "e:\MySiteImage\" and uploads the file in it.
Anyone has any ideas??
Thank you#
I need help with Resource Browser. I am using Cold Fusion for backend and I was able to set up all the paths cept the file browser. I've tried modifying config.cfm and connector.cfm in the browser/connector folder but didn't make any difference.
I do have <cfset application.FCKeditor.userFilesPath = "/login/images/"> in the application.cfm which works fine for other parts such as file upload.
When I upload image via file browser it creates folder outside of my site with the site root folder name + image, so if my site root folder is "e:\MySite\" it crates folder "e:\MySiteImage\" and uploads the file in it.
Anyone has any ideas??
Thank you#
Re: Help with file browser...
Another thing, it looks like no matter what path I have it always ads /image/ to the path, and I can't find where is this specified, does anyone know?
Re: Help with file browser...
Config.FileTypesPath["Image"] = Config.UserFilesPath & '/image/' ;
Config.FileTypesAbsolutePath["Image"] = iif( Config.ServerPath eq "", de(""), de(Config.ServerPath & '/image/') ) ;