Fantomas42 / django-blog-zinnia

Simple yet powerful and really extendable application for managing a blog within your Django Web site.
http://django-blog-zinnia.com/
BSD 3-Clause "New" or "Revised" License
2.11k stars 731 forks source link

Django 1.7 with new install problem #417

Closed mrgaolei closed 9 years ago

mrgaolei commented 9 years ago

Django 1.7.7 zinnia 0.15.1

django-admin.py startproject I begin to write a new project and I only install zinnia on INSTALLED_APP when I run ./manage.py migrate it prompt:

Operations to perform: Synchronize unmigrated apps: zinnia, mptt, django_comments, tagging Apply all migrations: admin, contenttypes, sites, auth, sessions Synchronizing apps without migrations: Creating tables... Installing custom SQL... Installing indexes... Running migrations: Applying contenttypes.0001_initial...Traceback (most recent call last): File "./manage.py", line 10, in execute_from_command_line(sys.argv) File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/Django-1.7.7-py2.7.egg/django/core/management/init.py", line 385, in execute_from_command_line utility.execute() File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/Django-1.7.7-py2.7.egg/django/core/management/init.py", line 377, in execute self.fetch_command(subcommand).run_from_argv(self.argv) File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/Django-1.7.7-py2.7.egg/django/core/management/base.py", line 288, in run_from_argv self.execute(_args, _options.dict) File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/Django-1.7.7-py2.7.egg/django/core/management/base.py", line 338, in execute output = self.handle(_args, _options) File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/Django-1.7.7-py2.7.egg/django/core/management/commands/migrate.py", line 161, in handle executor.migrate(targets, plan, fake=options.get("fake", False)) File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/Django-1.7.7-py2.7.egg/django/db/migrations/executor.py", line 68, in migrate self.apply_migration(migration, fake=fake) File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/Django-1.7.7-py2.7.egg/django/db/migrations/executor.py", line 96, in apply_migration if self.detect_soft_applied(migration): File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/Django-1.7.7-py2.7.egg/django/db/migrations/executor.py", line 140, in detect_soft_applied apps = project_state.render() File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/Django-1.7.7-py2.7.egg/django/db/migrations/state.py", line 75, in render "for more" % new_unrendered_models django.db.migrations.state.InvalidBasesError: Cannot resolve bases for [<ModelState: 'zinnia.Author'>] This can happen if you are inheriting models from an app with migrations (e.g. contrib.auth) in an app with no migrations; see https://docs.djangoproject.com/en/1.7/topics/migrations/#dependencies for more

Fantomas42 commented 9 years ago

Do you have customized the User model ?

Fantomas42 commented 9 years ago

Seems that is the contenttype app which cause the issue, if I understand this line correctly...

Applying contenttypes.0001_initial...Traceback (most recent call last):

Weird

Fantomas42 commented 9 years ago

Can you paste me your setting file on friendpaste ?

Fantomas42 commented 9 years ago

I just made a new install from scratch like you describe, and everything works fine !

Fantomas42 commented 9 years ago

I close the issue until further information.