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.
I've enjoyed SAbnzbd+ 0.3.0 now for about a week on a Debian x86 box Many thanks to the devs
That's why i decided i wanted it on my Conceptronic CH3SNAS (NAS which is almost the same as D-Link DNS-323).
The CH3SNAS runs a chrooted Debian etch install. SABnzbd+ 0.3.0 (final) does run and is able to download. It even gets the max speed of my internet connection (about 630 KB/sec)
However there is one weird thing. After starting SABnzbd there are exactly 20 SABnzbd.py (all with different pid) processes running. But on my Debian x86 there is only one SABnzbd.py proces.
What is causing this?
#!/bin/python
import threading
import time
class Tester(threading.Thread):
def __init__(self, name):
threading.Thread.__init__(self)
self.name = name
def run(self):
while 1:
time.sleep(2.0)
print self.name
one = Tester("one")
two = Tester("two")
three = Tester("three")
four = Tester("four")
five = Tester("five")
one.start()
time.sleep(0.5)
two.start()
time.sleep(0.5)
three.start()
time.sleep(0.5)
four.start()
time.sleep(0.5)
five.start()
while 1:
time.sleep(0.5)
As I posted elsewhere, it's htop, not sabnzbd. htop defaults to showing threads as processes, so multi-threaded applications (like sabnzbd) show up multiple times.