We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When running the first migration after installing, this error was thrown:
RuntimeError: Model class django.contrib.sites.models.Site doesn't declare an explicit app_label and isn't in a n application in INSTALLED_APPS.
I had to add django.contrib.sites to the INSTALLED_APPS and set SITE_ID = 1 in settings.py.
django.contrib.sites
INSTALLED_APPS
SITE_ID = 1
settings.py
Is this related to #69?
The text was updated successfully, but these errors were encountered:
I have the same issue
Sorry, something went wrong.
@pd-Shah Were you able to fix it using the guidance that was added to the README in this PR? https://github.com/pinax/pinax-blog/pull/89/files
Successfully merging a pull request may close this issue.
When running the first migration after installing, this error was thrown:
I had to add
django.contrib.sites
to theINSTALLED_APPS
and setSITE_ID = 1
insettings.py
.Is this related to #69?
The text was updated successfully, but these errors were encountered: