I'm not sure if my problem is caused by TinyMCE, but I'm hoping it is a shot in the right direction.

I am running two web different "web servers" on my web server. The first is apache on port 8080 (hosts drupal) and the second is IIS on port 80. From drupal, I have multiple links to content that needs to be hosted by IIS (ASP pages). When I create the links, I enter their src as being "http://myserver/pageIwant.asp". However, the links are "cleaned" to become "/pageIwant.asp" which is then interpreted as "http://myserver:8080/pageIwant.asp".

How can I tell TinyMCE (if it is the source of my woes) that myserver is different from myserver:8080?

Thanks,

Casey

Comments

cmccracken’s picture

Status: Active » Closed (fixed)

I added

$tinymce_settings .= ",convert_urls:false";

after the settings are read from the profile in tinymce.module.

Casey