Fabian Braun

Results 462 comments of Fabian Braun

The output is correct. The last resort will be to delete the `db.sqlite3` file (obviously losing everything entered into the DB) and run migrations and `createsuperuser` again to see if...

Thank you, @TLuesebrinck ! Those are valuable inputs. Thank you very much! A few quick comments: * If no root page exists, the "create" wizard is opened automatically to allow...

@drfenixion When using djangocms-versioning, the unique constraint must not be present. Migration [`0009`](https://github.com/django-cms/djangocms-versioning/blob/master/djangocms_versioning/migrations/0009_cms_pagecontent_remove_unique_constraint.py) of djangocms-versioning should have removed the unique constraint from the DB. Can you check if it did...

The issue of cache keys longer than 250 characters for placeholder cache keys has been fixed in #7657 and will be part of the next minor 3.11 release. Having said...

@pgcd The key `':1:cms_3.11.3__PAGE_CACHE_VERSION'` looks OK to me. Are you using a [KEY_PREFIX](https://docs.djangoproject.com/en/4.2/ref/settings/#std-setting-CACHES-KEY_PREFIX) in your config? Somehow pymemcache seems to stumble when resolving the `key_prefix`. The Oscar key contains non-ASCII...

Hey @alexgustafson ! Thanks for the precise issue report and taking the time to outline all details. Indeed, Django's migration system does not recognize that by adding a model to...

Looking at my own example, I realize that it is bad practice to access models in migrations through direct import. It is recommended practice to use the `apps` parameter, e.g.:...

@sparrowme Thanks for pointing this out! Can I interest you in creating a PR for this? You might want to have a look at line 147 of https://github.com/django-cms/django-cms/blob/5b592b96fe95a292c2b38ead4f1b54051811b538/cms/wizards/wizard_base.py#L128-L152

Apphooks should use the `render_placeholder` template tag. The reason is that the placeholders must be attached to the right model - and for your apphook it should be its model...