I have searched for any existing and/or related issues.
I have searched for any existing and/or related discussions.
I have also searched in the CLOSED issues AND CLOSED discussions and found no related items (your issue might already be addressed on the development branch!).
I am using the latest version of Open WebUI.
Installation Method
Docker
Open WebUI Version
v0.6.41
Ollama Version (if applicable)
0.13.1
Operating System
Red Hat Enterprise Linux 9.2
Browser (if applicable)
Firefox Developer
Confirmation
I have read and followed all instructions in README.md.
I am using the latest version of both Open WebUI and Ollama.
I have included the browser console logs.
I have included the Docker container logs.
I have provided every relevant configuration, setting, and environment variable used in my setup.
I have clearly listed every relevant configuration, custom setting, environment variable, and command-line option that influences my setup (such as Docker Compose overrides, .env values, browser settings, authentication configurations, etc).
I have documented step-by-step reproduction instructions that are precise, sequential, and leave nothing to interpretation. My steps:
Start with the initial platform/version/OS and dependencies used,
Specify exact install/launch/configure commands,
List URLs visited, user input (incl. example values/emails/passwords if needed),
Describe all options and toggles enabled or changed,
Include any files or environmental changes,
Identify the expected and actual result at each stage,
Ensure any reasonably skilled user can follow and hit the same issue.
Expected Behavior
When you open Open WebUI, the chats in the sidebar should load.
The chats are not loading.
Errors: see below.
Actual Behavior
Under "Chats" in the sidebar, it says "Loading..." and the spinner is spinning, but it never resolves.
Steps to Reproduce
Install Open WebUI v0.6.41
Browser navigate to your instance
Open the sidebar!
Logs & Screenshots
Errors in the developer console:
Uncaught (in promise) TypeError: can't access property "sort" of null
T Sidebar.svelte:186
Errors in docker logs:
starlette
sqlalchemy.exc.OperationalError
File "/usr/local/lib/python3.11/site-packages/starlette/_utils.py", line 85, in collapse_excgroups
raise exc
File "/usr/local/lib/python3.11/site-packages/starlette/middleware/base.py", line 193, in __call__
response = await self.dispatch_func(request, call_next)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/backend/open_webui/main.py", line 1262, in dispatch
response = await call_next(request)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/starlette/middleware/base.py", line 168, in call_next
raise app_exc from app_exc.__cause__ or app_exc.__context__
File "/usr/local/lib/python3.11/site-packages/starlette/middleware/base.py", line 144, in coro
await self.app(scope, receive_or_disconnect, send_no_error)
File "/usr/local/lib/python3.11/site-packages/starlette_compress/__init__.py", line 92, in __call__
return await self._zstd(scope, receive, send)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/starlette_compress/_zstd_legacy.py", line 100, in __call__
await self.app(scope, receive, wrapper)
File "/usr/local/lib/python3.11/site-packages/starlette/middleware/exceptions.py", line 63, in __call__
await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send)
File "/usr/local/lib/python3.11/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app
raise exc
File "/usr/local/lib/python3.11/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app
await app(scope, receive, sender)
File "/usr/local/lib/python3.11/site-packages/fastapi/middleware/asyncexitstack.py", line 18, in __call__
await self.app(scope, receive, send)
File "/usr/local/lib/python3.11/site-packages/starlette/routing.py", line 716, in __call__
await self.middleware_stack(scope, receive, send)
File "/usr/local/lib/python3.11/site-packages/starlette/routing.py", line 736, in app
await route.handle(scope, receive, send)
File "/usr/local/lib/python3.11/site-packages/starlette/routing.py", line 290, in handle
await self.app(scope, receive, send)
File "/usr/local/lib/python3.11/site-packages/fastapi/routing.py", line 125, in app
await wrap_app_handling_exceptions(app, request)(scope, receive, send)
File "/usr/local/lib/python3.11/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app
raise exc
File "/usr/local/lib/python3.11/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app
await app(scope, receive, sender)
File "/usr/local/lib/python3.11/site-packages/fastapi/routing.py", line 111, in app
response = await f(request)
^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/fastapi/routing.py", line 391, in app
raw_response = await run_endpoint_function(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/fastapi/routing.py", line 290, in run_endpoint_function
return await dependant.call(**values)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/backend/open_webui/routers/channels.py", line 92, in get_channels
channels = Channels.get_channels_by_user_id(user.id)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/backend/open_webui/models/channels.py", line 357, in get_channels_by_user_id
.all()
^^^^^
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/query.py", line 2699, in all
return self._iter().all() # type: ignore
^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/query.py", line 2853, in _iter
result: Union[ScalarResult[_T], Result[_T]] = self.session.execute(
^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/session.py", line 2365, in execute
return self._execute_internal(
^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/session.py", line 2251, in _execute_internal
result: Result[Any] = compile_state_cls.orm_execute_statement(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/context.py", line 305, in orm_execute_statement
result = conn.execute(
^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/engine/base.py", line 1416, in execute
return meth(
^^^^^
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/sql/elements.py", line 516, in _execute_on_connection
return connection._execute_clauseelement(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/engine/base.py", line 1638, in _execute_clauseelement
ret = self._execute_context(
^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/engine/base.py", line 1843, in _execute_context
return self._exec_single_context(
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/engine/base.py", line 1983, in _exec_single_context
self._handle_dbapi_exception(
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/engine/base.py", line 2352, in _handle_dbapi_exception
raise sqlalchemy_exception.with_traceback(exc_info[2]) from e
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/engine/base.py", line 1964, in _exec_single_context
self.dialect.do_execute(
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/engine/default.py", line 942, in do_execute
cursor.execute(statement, parameters)
sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) no such column: channel.is_private
[SQL: SELECT channel.id AS channel_id, channel.user_id AS channel_user_id, channel.type AS channel_type, channel.name AS channel_name, channel.description AS channel_description, channel.is_private AS channel_is_private, channel.data AS channel_data, channel.meta AS channel_meta, channel.access_control AS channel_access_control, channel.created_at AS channel_created_at, channel.updated_at AS channel_updated_at, channel.updated_by AS channel_updated_by, channel.archived_at AS channel_archived_at, channel.archived_by AS channel_archived_by, channel.deleted_at AS channel_deleted_at, channel.deleted_by AS channel_deleted_by
FROM channel JOIN channel_member ON channel.id = channel_member.channel_id
WHERE channel.deleted_at IS NULL AND channel.archived_at IS NULL AND channel.type IN (?, ?) AND channel_member.user_id = ? AND channel_member.is_active IS 1]
[parameters: ('group', 'dm', '46a4f034-32cf-4810-b276-c61c6ba67ebb')]
(Background on this error at: https://sqlalche.me/e/20/e3q8)
Additional Information
No response
Originally created by @tdiprima on GitHub (Dec 3, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/19722
### Check Existing Issues
- [x] I have searched for any existing and/or related issues.
- [x] I have searched for any existing and/or related discussions.
- [x] I have also searched in the CLOSED issues AND CLOSED discussions and found no related items (your issue might already be addressed on the development branch!).
- [x] I am using the latest version of Open WebUI.
### Installation Method
Docker
### Open WebUI Version
v0.6.41
### Ollama Version (if applicable)
0.13.1
### Operating System
Red Hat Enterprise Linux 9.2
### Browser (if applicable)
Firefox Developer
### Confirmation
- [x] I have read and followed all instructions in `README.md`.
- [x] I am using the latest version of **both** Open WebUI and Ollama.
- [x] I have included the browser console logs.
- [x] I have included the Docker container logs.
- [x] I have **provided every relevant configuration, setting, and environment variable used in my setup.**
- [x] I have clearly **listed every relevant configuration, custom setting, environment variable, and command-line option that influences my setup** (such as Docker Compose overrides, .env values, browser settings, authentication configurations, etc).
- [x] I have documented **step-by-step reproduction instructions that are precise, sequential, and leave nothing to interpretation**. My steps:
- Start with the initial platform/version/OS and dependencies used,
- Specify exact install/launch/configure commands,
- List URLs visited, user input (incl. example values/emails/passwords if needed),
- Describe all options and toggles enabled or changed,
- Include any files or environmental changes,
- Identify the expected and actual result at each stage,
- Ensure any reasonably skilled user can follow and hit the same issue.
### Expected Behavior
When you open Open WebUI, the chats in the sidebar should load.
The chats are not loading.
Errors: see below.
### Actual Behavior
Under "Chats" in the sidebar, it says "Loading..." and the spinner is spinning, but it never resolves.
### Steps to Reproduce
1. Install Open WebUI v0.6.41
2. Browser navigate to your instance
3. Open the sidebar!
### Logs & Screenshots
**Errors in the developer console:**
Uncaught (in promise) TypeError: can't access property "sort" of null
T Sidebar.svelte:186
**Errors in docker logs:**
* starlette
* sqlalchemy.exc.OperationalError
```
File "/usr/local/lib/python3.11/site-packages/starlette/_utils.py", line 85, in collapse_excgroups
raise exc
File "/usr/local/lib/python3.11/site-packages/starlette/middleware/base.py", line 193, in __call__
response = await self.dispatch_func(request, call_next)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/backend/open_webui/main.py", line 1262, in dispatch
response = await call_next(request)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/starlette/middleware/base.py", line 168, in call_next
raise app_exc from app_exc.__cause__ or app_exc.__context__
File "/usr/local/lib/python3.11/site-packages/starlette/middleware/base.py", line 144, in coro
await self.app(scope, receive_or_disconnect, send_no_error)
File "/usr/local/lib/python3.11/site-packages/starlette_compress/__init__.py", line 92, in __call__
return await self._zstd(scope, receive, send)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/starlette_compress/_zstd_legacy.py", line 100, in __call__
await self.app(scope, receive, wrapper)
File "/usr/local/lib/python3.11/site-packages/starlette/middleware/exceptions.py", line 63, in __call__
await wrap_app_handling_exceptions(self.app, conn)(scope, receive, send)
File "/usr/local/lib/python3.11/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app
raise exc
File "/usr/local/lib/python3.11/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app
await app(scope, receive, sender)
File "/usr/local/lib/python3.11/site-packages/fastapi/middleware/asyncexitstack.py", line 18, in __call__
await self.app(scope, receive, send)
File "/usr/local/lib/python3.11/site-packages/starlette/routing.py", line 716, in __call__
await self.middleware_stack(scope, receive, send)
File "/usr/local/lib/python3.11/site-packages/starlette/routing.py", line 736, in app
await route.handle(scope, receive, send)
File "/usr/local/lib/python3.11/site-packages/starlette/routing.py", line 290, in handle
await self.app(scope, receive, send)
File "/usr/local/lib/python3.11/site-packages/fastapi/routing.py", line 125, in app
await wrap_app_handling_exceptions(app, request)(scope, receive, send)
File "/usr/local/lib/python3.11/site-packages/starlette/_exception_handler.py", line 53, in wrapped_app
raise exc
File "/usr/local/lib/python3.11/site-packages/starlette/_exception_handler.py", line 42, in wrapped_app
await app(scope, receive, sender)
File "/usr/local/lib/python3.11/site-packages/fastapi/routing.py", line 111, in app
response = await f(request)
^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/fastapi/routing.py", line 391, in app
raw_response = await run_endpoint_function(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/fastapi/routing.py", line 290, in run_endpoint_function
return await dependant.call(**values)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/backend/open_webui/routers/channels.py", line 92, in get_channels
channels = Channels.get_channels_by_user_id(user.id)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/app/backend/open_webui/models/channels.py", line 357, in get_channels_by_user_id
.all()
^^^^^
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/query.py", line 2699, in all
return self._iter().all() # type: ignore
^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/query.py", line 2853, in _iter
result: Union[ScalarResult[_T], Result[_T]] = self.session.execute(
^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/session.py", line 2365, in execute
return self._execute_internal(
^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/session.py", line 2251, in _execute_internal
result: Result[Any] = compile_state_cls.orm_execute_statement(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/context.py", line 305, in orm_execute_statement
result = conn.execute(
^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/engine/base.py", line 1416, in execute
return meth(
^^^^^
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/sql/elements.py", line 516, in _execute_on_connection
return connection._execute_clauseelement(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/engine/base.py", line 1638, in _execute_clauseelement
ret = self._execute_context(
^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/engine/base.py", line 1843, in _execute_context
return self._exec_single_context(
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/engine/base.py", line 1983, in _exec_single_context
self._handle_dbapi_exception(
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/engine/base.py", line 2352, in _handle_dbapi_exception
raise sqlalchemy_exception.with_traceback(exc_info[2]) from e
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/engine/base.py", line 1964, in _exec_single_context
self.dialect.do_execute(
File "/usr/local/lib/python3.11/site-packages/sqlalchemy/engine/default.py", line 942, in do_execute
cursor.execute(statement, parameters)
sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) no such column: channel.is_private
[SQL: SELECT channel.id AS channel_id, channel.user_id AS channel_user_id, channel.type AS channel_type, channel.name AS channel_name, channel.description AS channel_description, channel.is_private AS channel_is_private, channel.data AS channel_data, channel.meta AS channel_meta, channel.access_control AS channel_access_control, channel.created_at AS channel_created_at, channel.updated_at AS channel_updated_at, channel.updated_by AS channel_updated_by, channel.archived_at AS channel_archived_at, channel.archived_by AS channel_archived_by, channel.deleted_at AS channel_deleted_at, channel.deleted_by AS channel_deleted_by
FROM channel JOIN channel_member ON channel.id = channel_member.channel_id
WHERE channel.deleted_at IS NULL AND channel.archived_at IS NULL AND channel.type IN (?, ?) AND channel_member.user_id = ? AND channel_member.is_active IS 1]
[parameters: ('group', 'dm', '46a4f034-32cf-4810-b276-c61c6ba67ebb')]
(Background on this error at: https://sqlalche.me/e/20/e3q8)
```
### Additional Information
_No response_
GiteaMirror
added the bug label 2026-04-20 01:15:23 -05:00
#18145issue: 0.6.33 regression by Ark-Levy • Oct 08, 2025 • bug
#19438issue: Icon loading regression by JoelShepard • Nov 24, 2025 • bug
#16025issue: 404 and style errors in 0.6.15+ by drewbroadbent • Jul 25, 2025 • bug
#18974issue: hanging on front matter requirements after update by DuckyBlender • Nov 06, 2025 • bug
#19481issue: admin panel not working by kybeq • Nov 25, 2025 • bug
💡Tips:
If this is a duplicate, please consider closing this issue and adding any additional details to the existing one
If you found a solution in any of these issues, please share it here to help others
This comment was generated automatically by a bot. Please react with a 👍 if this comment was helpful, or a 👎 if it was not.
<!-- gh-comment-id:3607789572 -->
@owui-terminator[bot] commented on GitHub (Dec 3, 2025):
🔍 **Similar Issues Found**
I found some existing issues that might be related to this one. Please check if any of these are duplicates or contain helpful solutions:
1. [#19511](https://github.com/open-webui/open-webui/issues/19511) **issue: Sidebar not loading folders list past first page, only showing 10 latest chats.**
*by CrushedAsian255 • Nov 26, 2025 • `bug`*
2. [#19496](https://github.com/open-webui/open-webui/issues/19496) **issue: 500 internal server error appears in v0.6.40**
*by cloudtuotuo • Nov 26, 2025 • `bug`*
3. [#19563](https://github.com/open-webui/open-webui/issues/19563) **issue:**
*by naruto7g • Nov 28, 2025 • `bug`*
4. [#19417](https://github.com/open-webui/open-webui/issues/19417) **issue: v0.6.37 SQL Error**
*by AKHYP • Nov 24, 2025 • `bug`*
5. [#19211](https://github.com/open-webui/open-webui/issues/19211) **issue:**
*by Byrnes9 • Nov 16, 2025 • `bug`*
<details>
<summary>Show 5 more related issues</summary>
6. [#18145](https://github.com/open-webui/open-webui/issues/18145) **issue: 0.6.33 regression**
*by Ark-Levy • Oct 08, 2025 • `bug`*
7. [#19438](https://github.com/open-webui/open-webui/issues/19438) **issue: Icon loading regression**
*by JoelShepard • Nov 24, 2025 • `bug`*
8. [#16025](https://github.com/open-webui/open-webui/issues/16025) **issue: 404 and style errors in 0.6.15+**
*by drewbroadbent • Jul 25, 2025 • `bug`*
9. [#18974](https://github.com/open-webui/open-webui/issues/18974) **issue: hanging on front matter requirements after update**
*by DuckyBlender • Nov 06, 2025 • `bug`*
10. [#19481](https://github.com/open-webui/open-webui/issues/19481) **issue: admin panel not working**
*by kybeq • Nov 25, 2025 • `bug`*
</details>
---
💡 **Tips:**
- If this is a duplicate, please consider closing this issue and adding any additional details to the existing one
- If you found a solution in any of these issues, please share it here to help others
*This comment was generated automatically by a bot.* Please react with a 👍 if this comment was helpful, or a 👎 if it was not.
for some reason the db migration is not done correctly,
try to manually apply the upgrade:
Stop Open-WebUI instance
Run migration updates
# If using Docker
docker exec -it open-webui alembic upgrade head
# (open-webui is the container name)
# Or if running directly
cd /app/backend
alembic upgrade head
Restart Open-WebUI
<!-- gh-comment-id:3607834049 -->
@rgaricano commented on GitHub (Dec 3, 2025):
for some reason the db migration is not done correctly,
try to manually apply the upgrade:
- Stop Open-WebUI instance
- Run migration updates
```
# If using Docker
docker exec -it open-webui alembic upgrade head
# (open-webui is the container name)
# Or if running directly
cd /app/backend
alembic upgrade head
```
- Restart Open-WebUI
for some reason the db migration is not done correctly, try to manually apply the upgrade:
* Stop Open-WebUI instance
* Run migration updates
# If using Docker
docker exec -it open-webui alembic upgrade head
# (open-webui is the container name)
# Or if running directly
cd /app/backend
alembic upgrade head
<!-- gh-comment-id:3607965149 -->
@silentoplayz commented on GitHub (Dec 3, 2025):
> for some reason the db migration is not done correctly, try to manually apply the upgrade:
>
> * Stop Open-WebUI instance
>
> * Run migration updates
>
>
> ```
> # If using Docker
> docker exec -it open-webui alembic upgrade head
> # (open-webui is the container name)
>
> # Or if running directly
> cd /app/backend
> alembic upgrade head
> ```
>
> * Restart Open-WebUI
And if @rgaricano's steps provided doesn't help, please refer to https://docs.openwebui.com/troubleshooting/manual-database-migration.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @tdiprima on GitHub (Dec 3, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/19722
Check Existing Issues
Installation Method
Docker
Open WebUI Version
v0.6.41
Ollama Version (if applicable)
0.13.1
Operating System
Red Hat Enterprise Linux 9.2
Browser (if applicable)
Firefox Developer
Confirmation
README.md.Expected Behavior
When you open Open WebUI, the chats in the sidebar should load.
The chats are not loading.
Errors: see below.
Actual Behavior
Under "Chats" in the sidebar, it says "Loading..." and the spinner is spinning, but it never resolves.
Steps to Reproduce
Logs & Screenshots
Errors in the developer console:
Uncaught (in promise) TypeError: can't access property "sort" of null
T Sidebar.svelte:186
Errors in docker logs:
Additional Information
No response
@owui-terminator[bot] commented on GitHub (Dec 3, 2025):
🔍 Similar Issues Found
I found some existing issues that might be related to this one. Please check if any of these are duplicates or contain helpful solutions:
#19511 issue: Sidebar not loading folders list past first page, only showing 10 latest chats.
by CrushedAsian255 • Nov 26, 2025 •
bug#19496 issue: 500 internal server error appears in v0.6.40
by cloudtuotuo • Nov 26, 2025 •
bug#19563 issue:
by naruto7g • Nov 28, 2025 •
bug#19417 issue: v0.6.37 SQL Error
by AKHYP • Nov 24, 2025 •
bug#19211 issue:
by Byrnes9 • Nov 16, 2025 •
bugShow 5 more related issues
#18145 issue: 0.6.33 regression
by Ark-Levy • Oct 08, 2025 •
bug#19438 issue: Icon loading regression
by JoelShepard • Nov 24, 2025 •
bug#16025 issue: 404 and style errors in 0.6.15+
by drewbroadbent • Jul 25, 2025 •
bug#18974 issue: hanging on front matter requirements after update
by DuckyBlender • Nov 06, 2025 •
bug#19481 issue: admin panel not working
by kybeq • Nov 25, 2025 •
bug💡 Tips:
This comment was generated automatically by a bot. Please react with a 👍 if this comment was helpful, or a 👎 if it was not.
@rgaricano commented on GitHub (Dec 3, 2025):
for some reason the db migration is not done correctly,
try to manually apply the upgrade:
@silentoplayz commented on GitHub (Dec 3, 2025):
And if @rgaricano's steps provided doesn't help, please refer to https://docs.openwebui.com/troubleshooting/manual-database-migration.