Is there a way to have a full path when using the coldfusion connector?
rather than having <img src="images/image.jpg"> having it at <img src="http://www.blah.com/images/image.jpg"> ?
Thu, 02/09/2006 - 07:48
#1
RE: Image Full Path with ColdFusion connector
RE: Image Full Path with ColdFusion connector
Isn't there a variable like displayfullpath, I got that impression from reading other threads thats the solution?
Johnny
RE: Image Full Path with ColdFusion connector
RE: Image Full Path with ColdFusion connector
Has anyone got image management running reliably on the CF platform?
Regards
Cliff Pearson
RE: Image Full Path with ColdFusion connector
RE: Image Full Path with ColdFusion connector
I think i may have found the answer.

http://72.14.207.104/search?q=cache:AvG ... clnk&cd=20
Thankfully, I found this fix rather quickly. Basically, you need to add the absolute path to each image/link you create. This following file controls this:
fck/editor/filemanager/browser/default/frmresourceslist.html
Modify line 69 to:
'var sLink = '<a href="#" onclick="OpenFile(\'http://www.your_domain_name.com' + fileUrl + '\');return false;">' ;
Don't forget to substitute your_domain_name with your domain name
RE: Image Full Path with ColdFusion connector