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
I had the same issue, and it could have been solved easily if we were able to specify the base url using the document_base_url.
Alternatively, I was able to specify the base url before initializing tinymce.
tinyMCE.baseURL = "URL_TO/tinymce/jscripts/tiny_mce/";// trailing slash important
tinyMCE.init({
mode : "textareas",
theme : "simple"
});
TinyMCE is working fine now.