You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due this Wagtail issue (wagtail/wagtail#3653) filtering entries by author with usernames with dots is not possible. So you cannot write something like this PUPUT_USERNAME_REGEX = '[-\w\.]+'. A possible workaround is overwrite the wagtailcore/urls.py file and replace:
serve_pattern = r'^((?:[\w-]+/))$'
with serve_pattern = r'^((?:[\w-]+/)|.*)$'
The text was updated successfully, but these errors were encountered:
Due this Wagtail issue (wagtail/wagtail#3653) filtering entries by author with usernames with dots is not possible. So you cannot write something like this
PUPUT_USERNAME_REGEX = '[-\w\.]+'
. A possible workaround is overwrite thewagtailcore/urls.py
file and replace:serve_pattern = r'^((?:[\w-]+/))$'
with
serve_pattern = r'^((?:[\w-]+/)|.*)$'
The text was updated successfully, but these errors were encountered: