-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After updating from gogs 0.11.91 to gitea 1.13, can't access my dashboard #11560
Comments
It looks like Can you check your |
I have the exact same error after upgrading from Gogs 0.11.91 using PostgreSQL to Gitea 1.0.2 -> 1.1.4 -> 1.2.3 -> 1.3.3 -> 1.4.3 -> 1.5.3 -> 1.6.4 -> 1.11.6. What should I look for in the action table? |
I have found a solution to the problem. I cloned my gogs VM again, and went a different route for the upgrade to gitea:
The issue with the dashboard is gone now for my user. |
If it helps: I have found out that the -- fix differnt op_type usage between gogs v19 and gitea
UPDATE action SET op_type = 1000 + op_type WHERE op_type > 15;
UPDATE action SET op_type = 16 WHERE op_type = 1018;
UPDATE action SET op_type = 17 WHERE op_type = 1017;
UPDATE action SET op_type = 1 WHERE op_type = 1019;
UPDATE action SET op_type = 18 WHERE op_type = 1020;
UPDATE action SET op_type = 19 WHERE op_type = 1021;
UPDATE action SET op_type = 20 WHERE op_type = 1022; |
[x]
):Description
If I have signed out, I can access my dashboard.
If I haven't signed out, an error occurs when accessing my dashboard.
(I followed
Upgrade from gogs
doc and #4286)Error message:
...
Screenshots
If I have signed out
If I haven't signed out
The text was updated successfully, but these errors were encountered: