I have got tinyMCE working in the django admin, but all the popups are blank (eg. edit HTML, add image)
The paths to the popup html pages all exist in the right places
http://thatch.media/js/tiny_mce/themes/advanced/source_editor.htm?mce_rdomain=thatch
The permissions are set to 777 on the whole js folder
This is my Model
class Page(models.Model): title = models.CharField(max_length=200) ... class Admin: js = ('js/tiny_mce/tiny_mce.js', 'js/textareas.js')
Any Ideas?
I changed the media from being served from http://thatch.media to be http://thatch/media and now it works
Maybe something to do with being in different domains?