Ich entschied mich, zu django-cms zu schauen. bei der Dokumentation Nachdem ich geklont ich das RepositoryWie starte ich ein Django cms Projekt
git clone https://github.com/divio/django-cms.git
Dann mit ich es
mit installiertsudo python setup.py install
Ich habe bereits django 1.2.3 installiert. Ich zog in die example
Verzeichnis ein RAN syncdb
, das die folgenden Tabellen erstellt:
Creating table auth_permission
Creating table auth_group_permissions
Creating table auth_group
Creating table auth_user_user_permissions
Creating table auth_user_groups
Creating table auth_user
Creating table auth_message
Creating table django_content_type
Creating table django_session
Creating table django_admin_log
Creating table django_site
Creating table sampleapp_category
Creating table sampleapp_picture
Creating table south_migrationhistory
You just installed Django's auth system, which means you don't have any superusers defined.
Would you like to create one now? (yes/no): yes...
Wir deutlich sehen kann, dass die cms Tabellen nicht erstellt. Ich bin vor offensichtlich das Problem, wenn der Server läuft und das Surfen http://localhost:8000/
DatabaseError: no such table: cms_page
Ich habe bei der Dokumentation geschaut und gesehen, dass ich die Anforderungen in Bezug auf die Versionen erfüllen aber klar, ich mache etwas falsch. Jede Hilfe würde sehr geschätzt werden.
Ist die App in der Einstellungsdatei Ihres Projekts aktiviert? Ich denke, das kann sehr wohl das Problem sein. –