Accidentally Broke Updates via Admin Settings #2289
-
I believe I accidentally broke updates via the Admin Settings. I was changing my update interval to 1800, and it prompted me for my password. My password manager "Bitwarden" autofilled it and also autofilled my Nextcloud username (which is text) as the update interval. Now my feeds don't update, and I can't access the user Settings within the Nextcloud App. Most importantly, Nextcloud gives an "Internal Server Error" when I try to go to the News Admin Settings. Is there a way to fix this without losing all user feeds? Perhaps there is a database or file that holds the update interval which I could repair? I did check my server's News app's lib/AppInfo/Application.php Using latest official Docker container for Nextcloud. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The app configuration is stored in the database table SELECT * FROM oc_appconfig WHERE appid = "news" and configkey = "updateInterval"; The one you've found is the default value inside of the source code. |
Beta Was this translation helpful? Give feedback.
The app configuration is stored in the database table
oc_appconfig
. To see your current value you could execute the following SQL query:The one you've found is the default value inside of the source code.