[Answer]-TinyMCE in django-cms

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

Leave a comment