views:

42

answers:

2

I have a problem with tinyMCE but only on live environment from some reason tinyMCE rewrite absolute url and only for some TLD sites, so far I'm notice that it doesn't work for .eu domains, does someone hade a same problem or know what can fix this?

A: 

I ran into some similar problems with tinyMCE before. It has some strange default behavior with URLs. There are a number of initialization properties you can set that effect how it behaves. Take a look at the documentation and experiment with these properties. At least that's what I did and eventually got the behavior I wanted.

Good luck!

Jai
+1  A: 

We needed to set both of these options in order to get TinyMCE to stop rewriting URLs to relative paths.

relative_urls : 0
remove_script_host : 0
jasonbar
This is it, thanks for help :)
vaske