Sonarr version (2.0.0.3953): Mono version (if Sonarr is not running on Windows): Windows 10: ((Debug logs)) (posted to hastebin or similar):
Hi I installed Sonarr, added series, but can’t reach the settings page. it keeps loading. not showing anything.
Trace, but you’ll need to enable it in the config file since you can’t see it in settings.
Easiest would be to edit C:\ProgramData\NzbDrone\config.xml and set the log level to Trace, delete the ((log files)), restart Sonarr and try going to the settings page.
Which browser are you using?
Have you tried a different browser?
In Chrome if you open the dev tools (F12) and go to the network tab and attempt to load the Settings in the Sonarr UI do you get any requests failing (they will be highlighted red)? If so what does the Response show for them?
{
"message": "Sequence contains more than one element",
"description": "System.InvalidOperationException: Sequence contains more than one element\n at System.Linq.Enumerable.SingleOrDefault[TSource] (IEnumerable`1 source) <0x2c3a0ed0 + 0x001b7> in <filename unknown>:0 \n at NzbDrone.Core.Datastore.BasicRepository`1[TModel].SingleOrDefault () <0x2efcb060 + 0x00033> in <filename unknown>:0 \n at NzbDrone.Core.Authentication.UserService.FindUser () <0x2efcee90 + 0x00018> in <filename unknown>:0 \n at NzbDrone.Api.Config.HostConfigModule.GetHostConfig () <0x2efce7e0 + 0x00084> in <filename unknown>:0 \n at NzbDrone.Api.REST.RestModule`1[TResource].<set_GetResourceSingle>b__e (System.Object options) <0x2ef8ee28 + 0x0001c> in <filename unknown>:0 \n at (wrapper dynamic-method) System.Object:CallSite.Target (System.Runtime.CompilerServices.Closure,System.Runtime.CompilerServices.CallSite,System.Func`2<object, object>,object)\n at Nancy.Routing.Route+<>c__DisplayClass4.<Wrap>b__3 (System.Object parameters, CancellationToken context) <0x2eec0260 + 0x0013b> in <filename unknown>:0 "
}
Ahh! Different issue, its a problem with the database (the user thats stored in there) got duplicated somehow. There are a few ways to fix this:
Restore a database backup that doesn’t have the issue
Delete the offending records from the database (sqlite)
DELETE FROM Users WHERE ID NOT IN (SELECT ID FROM Users LIMIT 1)
Switch the the develop build of Sonarr, which you’ll need to edit Sonarr’s config.xml to do so, then restart Sonarr and run the Update task (or wait for it to run automatically)
I ended up reinstalling and going from scratch, which of course solved the issue. I think the trouble may have been from momentarily changing the startup (rc.d) to use the root user.