I am developing a website using Django 1.11 and Django-CMS with python3
. Initially I used the default database sqlite3
, however, now I want it to migrate to mysql
. I have found several solutions online like
However, both did not work. For the first solution I got the following error:
AttributeError: 'Page' object has no attribute '_node_cache'
and for the second solution there was this error:
Could not load contenttypes.ContentType(pk=1): (1062, "Duplicate entry 'cms-placeholder' for key 'django_content_type_app_label_model_76bd3d3b_uniq'"
In both examples, I used a empty database and migrated first.
Any help please?