1๐
So I tried also again to install django tinymce on my own.
This code I included in my installed apps
INSTALLED_APPS = (
'tinymce',
'cms.plugins.text',
)
And this code to my url patterns
(r'^tinymce/', include('tinymce.urls')),
And is working in my dev enviroment. The other configuration points are optional
๐คAzd325
0๐
I am surprised you do not get 404 errors. AFAIK django-cms and django-tinymce look in the static files location, not media.
Therefore to get tinymce installed I needed to run
python manage.py collectstatic
Maybe this helps. If not, it may help someone else looking at this question
๐คGrischa
Source:stackexchange.com