mirror of
https://github.com/plankanban/planka.git
synced 2026-07-16 05:53:57 +03:00
[Bug]: Blank after logged-in as Admin User #878
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 @dionalfa on GitHub (Dec 11, 2025).
Where is the problem occurring?
I encountered the problem while using the application (Frontend)
What browsers are you seeing the problem on?
Chrome
Current behavior
Hi, I just did a fresh install on my Ubuntu 22 following this tutorial: https://docs.planka.cloud/docs/installation/docker/production-version#docker-compose
After logging in using the admin account, there are websocket errors in the console.
Desired behavior
No response
Steps to reproduce
I just followed this installation guides: https://docs.planka.cloud/docs/installation/docker/production-version#docker-compose
Other information
No response
@meltyshev commented on GitHub (Dec 11, 2025):
Hey! To understand why this is happening, we need to see your Docker Compose configuration. But I can already guess that the issue might be related to one of the following:
The
BASE_URLvalue - in your case, it should be set tohttp://192.168.110.111:3000(the same address you enter in your browser). Otherwise, the websocket connection will fail due to an untrusted origin.Incorrect proxy server configuration (if you're using a proxy) - it must handle websocket connections and pass them through to the PLANKA process.
@dionalfa commented on GitHub (Dec 12, 2025):
Hi @meltyshev,
My bad, I forgot to input the port in the
BASE_URL. Now the issue has been resolved.Thanks