Hi, I have FCKeditor working fine on a Linux server running coldfusion. In my Application.cfm file I have
<cfset clientpath = "/images2/">
<cfset application.userFilesPath = "/images2/">
But now I would like to have FCKeditor under one domain for admin so when it saves images it would be for another domain name but on the same server. So I tried:
<cfset clientpath = "/home/httpd/domainname/httpdocs/images2/">
<cfset application.userFilesPath = "home/httpd/domainname/httpdocs/images2/">
But that does not work as I think it wants to work out of the httpdocs folder for the admin domain.
Anyone know how to work around this?
TIA!
Tue, 02/10/2009 - 23:43
#1
Re: Coldfusion Path for application.userFilesPath and clientpath
Ok, I figured out the path issue and now it works fine except when in the image editor when I select an image to insert the image is broken since it is actually for another domain name.
Anyone know how to insert the URL domain before the image name so it displays correctly? Thank you!
Re: Coldfusion Path for application.userFilesPath and clientpath
Ok got it working
. Thank you