mirror of
https://github.com/lldap/lldap.git
synced 2026-04-25 16:25:55 +03:00
[GH-ISSUE #925] [BUG] Broken web UI after user creation #337
Labels
No labels
backend
blocked
bug
cleanup
dependencies
docker
documentation
duplicate
enhancement
enhancement
frontend
github_actions
good first issue
help wanted
help wanted
integration
invalid
ldap
pull-request
question
rust
rust
tests
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/lldap-lldap#337
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @mnowak-mirror on GitHub (Jul 2, 2024).
Original GitHub issue: https://github.com/lldap/lldap/issues/925
Describe the bug
The users web UI is broken after creating two users. It only shows:
Also
lldap-cliwon't be able to list or modify the users anymore. It only returns this error:However logging in with both created users still works as expected.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The second user doesn't break the UI.
Logs
Additional context
Access to the web UI is via HTTPS through a HAProxy instance. Other than that pretty straight forward installation with Postgres as backend.
@nitnelave commented on GitHub (Jul 2, 2024):
Can you try https://github.com/lldap/lldap/issues/821#issuecomment-1923995870 ?
It's a known issue, we need to change the collate of the column for PostgreSQL to C.
@mnowak-mirror commented on GitHub (Jul 2, 2024):
Forgot to mention I didn't use docker to set it up. I use Ansible to install LLDAP from the CentOS-9 Stream repo since I'm a fan of one VM per application I host. Same goes for the PostgreSQL server.
I'm no expert when it comes to databases, but I'll play around with it in the next few days when I find the time. Doesn't hurt to learn a few new things.
@mnowak-mirror commented on GitHub (Jul 3, 2024):
Creating the DB with lc_collate=C indeed works as expected. Thanks for the quick help