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.
Obviously I've got something screwed up here, but I can't tell what. The script runs. It starts the script 'sabmon' if it isn't running, but the nzb isn't added to the queue and sabnzbd stops responding requiring kill -9 to stop it.
Any suggestions on getting the script below to work in pre-queue?
#!/usr/bin/python
import commands
import os
runchk = commands.getoutput('ps aux | grep -v grep | grep sabmon')
if not 'sabmon' in runchk:
os.system('path-to-script/sabmon &')
print 1