First time here? Check out the FAQ!

Revision history  [back]

You can do the following:

In version 0.7.43:

#with your sqlite settings
python manage.py dumpdata > data.json

#with your mysql settings
python manage.py loaddata  data.json

The first command will dump the database data into json format then the second one will load them into your mysql database, always on the 0.7.43 version this is very important because for loading data the version must be the same from the data dump.

Now after that upgrade to askbot0.7.48 and do the migration.

python manage.py migrate

And after the migration it should work on the new version.