I am getting the error when trying to runserver or migrate: django.core.exceptions.ImproperlyConfigured: The SECRET_KEY setting must not be empty. Although the SECRET_KEY field is not empty, this is the settings.py file SECRET_KEY = 'secret_key' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True ALLOWED_HOSTS = [] # Application definition INSTALLED_APPS = [ 'blogs.apps.BlogsConfig', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'django.contrib.sites.models.Site', 'django_comments', 'mptt', 'tagging', 'zinnia', ] Code (markup): When i run a different project, i do not receive this error and it runs fine, it only happens with the zinnia app. Any help would be appreciated.
The ettiquette in forums is that you post again with your fix so others can learn from your experience. After all, if you weren't able to find the solution by searching then it will help the next person with the problem.