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
Source:stackexchange.com