[Answered ]-Wagtail and allauth – allauth is inheriting site name from django not wagtail

1👍

This is the expected behaviour – django-allauth is a Django package, not a Wagtail-specific one, and always uses Django’s site model even when Wagtail is active. To update the site name, log in to the Django admin backend (as distinct from the Wagtail one – this can be found at http://localhost:8000/django-admin/ if you set up your project with the wagtail start command) and go to the Sites item.

The issue being fixed in https://github.com/wagtail/wagtail/issues/2840 was that Wagtail and django-allauth could not coexist at all, due to both of them trying to set a conflicting request.site variable.

👤gasman

Leave a comment