ERROR [newzbin] Newzbin server changed its protocol

Get help with all aspects of SABnzbd
Forum rules
Help us help you:
  • Are you using the latest stable version of SABnzbd? Downloads page.
  • Tell us what system you run SABnzbd on.
  • Adhere to the forum rules.
  • Do you experience problems during downloading?
    Check your connection in Status and Interface settings window.
    Use Test Server in Config > Servers.
    We will probably ask you to do a test using only basic settings.
  • Do you experience problems during repair or unpacking?
    Enable +Debug logging in the Status and Interface settings window and share the relevant parts of the log here using [ code ] sections.
Post Reply
mastersite
Newbie
Newbie
Posts: 2
Joined: July 14th, 2008, 12:42 pm

ERROR [newzbin] Newzbin server changed its protocol

Post by mastersite »

Seems to be a problem whenever i try to download via inputting a newzbin report id.

I get this error from 'history'

- Failed to fetch newzbin report 3109923
- Stage Download
    [URL Fetch]: => Failed, Try again

And this error from the 'warnings'
2008-07-14 19:39:31,464 ERROR [newzbin] Newzbin server changed its protocol
2008-07-14 19:39:31,464 ERROR [sabnzbd.misc] Error getting url 3109923

hm?
User avatar
switch
Moderator
Moderator
Posts: 1380
Joined: January 17th, 2008, 3:55 pm
Location: UK

Re: ERROR [newzbin] Newzbin server changed its protocol

Post by switch »

That message is set when sabnzbd cannot extract the expected headers from the api request. This could be a sabnzbd / newzbin / python error.

What operating system are you running? Has this just start happening with this latest version?
mastersite
Newbie
Newbie
Posts: 2
Joined: July 14th, 2008, 12:42 pm

Re: ERROR [newzbin] Newzbin server changed its protocol

Post by mastersite »

im running linux, but not sure which one. How can i find out?

It happened with 0.4 and updated to 0.4.2 and still having the same problem.
User avatar
switch
Moderator
Moderator
Posts: 1380
Joined: January 17th, 2008, 3:55 pm
Location: UK

Re: ERROR [newzbin] Newzbin server changed its protocol

Post by switch »

Not too sure how to find out, you could just type "python" and see what it has to say above the input line.

My initial thought is that your python installation does not like HTTPS connections. SABnzbd does try to detect if you have support for it when deciding which one to use.

Try opening up newzbin.py and changing line 144

Code: Select all

from:
conn = httplib.HTTPSConnection('www.newzbin.com')
to:
conn = httplib.HTTPConnection('www.newzbin.com')
restart sabnzbd and see if it works now. If it does then you need to have a look into enabling ssl support for your python install, maybe compiling it again.
Last edited by switch on July 14th, 2008, 2:22 pm, edited 1 time in total.
Post Reply