I installed TinyMCE, everything was working great. I then used Google Closure to package my site's JavaScript along with TinyMCE_src
The problem I'm having is that TinyMCE is now making calls to:
plugins/paste/editor_plugin.js
themes/advanced/editor_template.js
langs/en.js
And that paths that are being used are invalid, they are 404'ing
How can I tell TinyMCE where to go to get these files?
I tried:
relative_urls : false,
document_base_url : "http://www.site.com/path1/",
But they have no effect on the files above.
Advise? Thanks