mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-01-14 21:23:29 +01:00
Can not login on new installation #32
Reference in New Issue
Block a user
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 @myxor on GitHub (Mar 10, 2025).
I installed WYGIWYH via docker-compose and created a new super user via
docker exec -it wygiwyh_server python manage.py createsuperuser.After that i opened the web ui but i can not login with the email and password which i set.
I also changed the password with
docker exec -it wygiwyh_server python manage.py changepassword [email]but still can not login.I do not see anything happening in the container logs during login.
Any ideas?
@eitchtee commented on GitHub (Mar 10, 2025):
When you login, do you get any errors on the login form or the page just refreshes?
Are you using https or http?
@eitchtee commented on GitHub (Mar 10, 2025):
If you're using http, you might want to have a look here:
https://github.com/eitchtee/WYGIWYH?tab=readme-ov-file#running-locally
If you've already done what's described there, mind sharing your docker-compose and .env file? Make sure to remove any sensible information like db passwords.
@myxor commented on GitHub (Mar 10, 2025):
There were no errors.
I am using HTTP in local network.
The problem was indeed the
URLconfig in the .env file. After i removed it i can now login.Thanks for your help!