$ git clone git://github.com/digi604/django-cms-2.0.git
$ cd django-cms-2.0
Open example/settings.pyand change your database settings. To get started quickly, I would suggest sqlite3.
DATABASE_ENGINE = 'sqlite3'
DATABASE_NAME = 'example.db'
There were problems with migration south(perhaps this is what you call problems). To avoid this, comment on the application 'south'from INSTALLED_APPS.
$ touch example.db
$ python manage.py syncdb
...
Now turn it 'south'back on in your settings.
$ python manage.py syncdb
...
Now pretend to be migrating:
$ python manage.py migrate --fake
And run:
$ python manage.py runserver
http://localhost:8000 add .