So I\'m trying to get TinyMCE up and running on a simple view function, but the path to the tiny_mce.js file gets screwed up. The file is located at /Users/home/Django/tinyMCE/m
Do you have the media context processor in your settings?
TEMPLATE_CONTEXT_PROCESSORS = ( 'django.core.context_processors.media', )
You might also try putting the following in your settings to see if the debug messages reveal anything:
TEMPLATE_DEBUG = True