I've installed 2.0 final and am having trouble with relative image URLs not displaying in the editor window. I have tried setting BaseHref to no avail. BaseHref seems to be ignored.
It says in the release notes for 2.0 that this problem was fixed but it doesn't seem to be fixed. Anyone have a work-around?
It says in the release notes for 2.0 that this problem was fixed but it doesn't seem to be fixed. Anyone have a work-around?
RE: Relative image URLs still not showing image
The BaseHref works. But it must be absolute.
i.e. http://www.mywebproject.net/ and not just
/ or /somepath/
SelfMan
RE: Relative image URLs still not showing ima
Apparently it's a Macintosh-related problem. FWIW, I had discovered that 2.0 works on FireFox on the Mac (in 'Basic' mode), so I had started using that. I'll guess I'll have to go back to my Windows box for the rest of this testing, durn it.
RE: Relative image URLs still not showing ima
So, that means that I can have only one BaseHref for my entire server. Ah well. I suppose I'm talking to myself here.
RE: Relative image URLs still not showing ima
How about this:
)
Modify the fckconfig.js like
HostList = new Array();
HostList['localhost'] = 'http://localhost/project/;
HostList['host.com'] ='http://host.com/';
HostList['www.host.com'] ='http://www.host.com/';
FCKConfig.BaseHref = HostList[window.location.host];
You can also implement some verification.
Using PHP is also possible.
You just have to use you brain
SelfMan