I've searched this forum for a solution to this problem and found some possibilities that did not seem to work..
I'm using the Java connector.
The problem is, I need to FULL URL in the Image Properties dialog when returning from Browsing the server. This is because the page that ultimately retrieves this HTML for viewing is located on a different server. I therefore need the FULL URL back to the image location.
i.e. http://www.mydomain.com/Context/UserFil ... /image.jpg
Instead I'm getting the relative context path..
/Context/UserFiles/Image/image.jpg
Based on messages found here, I have tried both..
oFCKeditor.Config['UserFilesPath'] = 'http://www.mydomain.com/Context/UserFiles/' ;
..and...
oFCKeditor.Config['BaseHref'] = 'http://www.mydomain.com/Context/' ;
and neither seem to work, as I still get only the relative context path..
I would REALLY appreciate some suggestions...
Thanks..
John..
Mon, 10/29/2007 - 22:59
#1
Re: Full URL in Image Properties from Browser
I found the answer.... at least for the Java Connector..
Add/update this in the ConnectorServlet.java, doGet(..) method..
Obviously this can be streamlined a bit, but I posted this because it is more "readable"..
Enjoy..
John..