mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-06 19:08:59 -05:00
[GH-ISSUE #12003] issue: Cold start on Firefox goes into a reload loop #31962
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 @regularfry on GitHub (Mar 24, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/12003
Check Existing Issues
Installation Method
Other
Open WebUI Version
v0.5.20
Ollama Version (if applicable)
No response
Operating System
MacOS 14.3.1
Browser (if applicable)
Firefox 136.0.2 (aarch64)
Confirmation
README.md.Expected Behavior
DATA_DIR=$PWD uvx --python 3.12 open-webui@latest servehttp://<hostname>:8080in FirefoxActual Behavior
DATA_DIR=$PWD uvx --python 3.12 open-webui@latest servehttp://<hostname>:8080in FirefoxSteps to Reproduce
See above
Logs & Screenshots
There are no logs output to the browser console, and because the page reload happens so quickly, it's not possible to capture the network activity in devtools either.
On the server, and after a successful configuration of the admin account via Chrome, the logs look like this:
The reload behaviour persists after the admin account is added, so it doesn't appear to be related to the uninitialised initial state.
Additional Information
It works fine in Chrome 134.0.6998.89 for me on the same mac as above. Note that open-webui and the browser are on different machines for me: the server is running on Ubuntu 24.04.
@almajo commented on GitHub (Mar 24, 2025):
Have you tried on Safari? For me on MacOS with Safari, I'm currently running in the same behaviour. At least when I'm accessing my dev deployment, for others it works again...
@regularfry commented on GitHub (Mar 24, 2025):
No, I don't see that behaviour on Safari.
However I do have another bit of information. If I open the URL
http://<hostname>:8080, Firefox goes into a reload loop. If I openhttp://<hostname>.lan:8080, which is an alias provided by the DNS server on my network, it seems to work fine.@zhanghao-njmu commented on GitHub (Mar 24, 2025):
After restarting the Open WebUI service, I also encountered the issue of being unable to reach the login page when accessing the IP address and port. However, switching to a different browser resolved the problem. This suggests the issue might be related to cached cookies or data in the original browser.
I haven't investigated further, but I found a workaround: accessing
http://<hostname>:<port>/authdirectly forces the application to display the login page.However, simply navigating to
http://<hostname>:<port>still results in the continuous reloading behavior and doesn't allow direct login.