tags:

views:

33

answers:

1

Hi there,

im using TinyMCE Wysiwyg editor, and when i enter a link, or an image from the same website, it removes the base url

for example, if i enter: http://www.domain.com/somelink.php - i'll get - somelink.php

any ideas how to solve it?

thanks!

+1  A: 

Add this few lines in your tinyMCE.init function :

convert_urls:true,
relative_urls:false,
remove_script_host:false,
Epharion
worked, thanks alot
WEBProject