[Django]-Django CMS fails to synch db or migrate

41๐Ÿ‘

โœ…

Iโ€™m guessing that you are using the new Django 1.6. There the sites application is no longer included by default in your project. And as it seems the django-cms depends on it.

You can add it easily to the list of enabled applications in your settings.py file, in the INSTALLED_APPS list:

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',    # <----- here!
    ...
๐Ÿ‘คrodrigo

Leave a comment