mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-22 02:32:51 +01:00
Added newznab troubleshooting
parent
349a75d83d
commit
8116d0c9c4
9
FAQ.md
9
FAQ.md
@ -65,4 +65,11 @@ There are two times when we would want to have missing episodes searched for, wh
|
||||
|
||||
In v1 of NzbDrone we had an opt in backlog search option, often people would turn it on and then get a bunch of old episodes and ask us why, we also had indexers ask why they saw an increase in API calls, which was due to the backlog searching.
|
||||
|
||||
In v2 we sat back and thought about it and realized the benefit is not really there, we could try to throttle the searching, but that just draws it out and still does the same thing; hammer the indexer with useless requests. If the episode wasn't there the last time the search was performed, why would it be there now? It would be if it was reposted, but if it was reposted, the automatic process that gets new episodes would see it was posted and act on it.
|
||||
In v2 we sat back and thought about it and realized the benefit is not really there, we could try to throttle the searching, but that just draws it out and still does the same thing; hammer the indexer with useless requests. If the episode wasn't there the last time the search was performed, why would it be there now? It would be if it was reposted, but if it was reposted, the automatic process that gets new episodes would see it was posted and act on it.
|
||||
|
||||
### Invalid Newznab URL entered ###
|
||||
First make sure you're using the correct URL (with https if applicable), such as: `https://indexer.nzbdrone.com`, not `https://indexer.nzbdrone.com/api`. If you're still having issues please see [[Newznab]]
|
||||
|
||||
|
||||
### database disk image is malformed ###
|
||||
This means your sqlite database that stores most of the information for NzbDrone is corrupt, there is an excellent guide here to copy the contents from the corrupt database into a new one: http://techblog.dorogin.com/2011/05/sqliteexception-database-disk-image-is.html
|
3
Home.md
3
Home.md
@ -15,6 +15,9 @@
|
||||
- [[PushOver]]
|
||||
- [[Sorting and Renaming]]
|
||||
|
||||
### Troubleshooting ###
|
||||
- [[Newznab]]
|
||||
|
||||
### Contributing ###
|
||||
- [[Contributing]]
|
||||
|
||||
|
11
Newznab.md
Normal file
11
Newznab.md
Normal file
@ -0,0 +1,11 @@
|
||||
## Errors ##
|
||||
|
||||
These are some of the common errors you may see when adding an indexer
|
||||
|
||||
### The underlying connection was closed: An unexpected error occurred on a send. ###
|
||||
|
||||
This is caused by the indexer using a SSL protocol not supported by .net 4.5, to resolve this you will need to install .net 4.5, which is available on Vista/Server 2008 and above (if you're on XP/Server 2003 its time to upgrade).
|
||||
|
||||
### Error getting response stream (Write: The authentication or decryption has failed.): SendFailure ###
|
||||
|
||||
This is caused by the indexer using a new certificate authority that is not trusted by mono 2.10. The solution is to upgrade to mono 3.x, on Ubuntu this can be done via this method: http://stackoverflow.com/a/13384233/882971 We recommend upgrading to mono 3.x to fix a number of bugs and add support for .net 4.5 features.
|
Loading…
Reference in New Issue
Block a user