You are not logged in.

#1 2008-12-07 15:13:55

HyperBaton
Member
From: Belgium
Registered: 2008-01-18
Posts: 207

Hellanzb stops downloading after every download

I've been using hellanzb to download from newsservers very succesfully for quite some time now, but it's been a week now that it stops downloading after pretty much every download. I've tried looking for a pattern when exactly it stops downloading, but I haven't been able to find one. So is anyone else experiencing this?

Offline

#2 2008-12-07 19:19:11

Diaz
Member
From: Portugal
Registered: 2008-04-16
Posts: 366

Re: Hellanzb stops downloading after every download

I had the same problem. If you have the smartpar option active in preferences, disable it. It should work.

Offline

#3 2008-12-08 08:28:25

IncredibleLaser
Member
From: Germany, NRW
Registered: 2008-07-16
Posts: 158

Re: Hellanzb stops downloading after every download

I have the same problem. Might have something to do with the python upgrades.

Offline

#4 2008-12-12 21:27:18

HyperBaton
Member
From: Belgium
Registered: 2008-01-18
Posts: 207

Re: Hellanzb stops downloading after every download

Sorry for the late reply, was away for a while unexpectedly. I will try the smartpar suggestion right away. This problem is very annoying, the whole idea of this server is so it operates standalone as much as possible.

Offline

#5 2008-12-13 10:22:49

HyperBaton
Member
From: Belgium
Registered: 2008-01-18
Posts: 207

Re: Hellanzb stops downloading after every download

Yes, this seems to have fixed it! Thank you very much. How did you find this out? Because this isn't something I would have come up with myself.

Offline

#6 2008-12-13 14:41:34

Diaz
Member
From: Portugal
Registered: 2008-04-16
Posts: 366

Re: Hellanzb stops downloading after every download

i had the same problem some weeks ago, and i was searching for it. don't really remember where i found it, but br grateful that i had the same problem as you, lol smile

Offline

#7 2008-12-13 14:43:38

HyperBaton
Member
From: Belgium
Registered: 2008-01-18
Posts: 207

Re: Hellanzb stops downloading after every download

Yeah, hellanzb is more addictive than cocaine.

Offline

#8 2008-12-29 09:22:47

Perre
Member
Registered: 2008-01-22
Posts: 189

Re: Hellanzb stops downloading after every download

Hi!

I seems to be having the same problem, but setting "# Disable SMART_PAR (download all PAR files) Hellanzb.SMART_PAR = False" doesn't seems to fix the problem.
Should it be set to "True" to be turned off? I'm also really addicted to Hella just downloading while I'm away so these random stops are annoying me extremely much. mad

I have downloaded the latest version with the patch for whitespaces...


Edit: Am I supposed to use quotes when setting it to false? Like 'False'? Maybe that's the problem.

Offline

#9 2008-12-29 09:31:48

HyperBaton
Member
From: Belgium
Registered: 2008-01-18
Posts: 207

Re: Hellanzb stops downloading after every download

Hellanzb.SMART_PAR = False

That's what it says in my config file, and that's what fixed my problem. And if you set this setting, does Hellanzb actually download ALL par2 files?

Offline

#10 2008-12-29 12:18:23

Perre
Member
Registered: 2008-01-22
Posts: 189

Re: Hellanzb stops downloading after every download

Hellanzb.SMART_PAR = False

This is what I've been using too, but it hasn't helped with the problem. :(

I've changed it to Hellanzb.SMART_PAR = 'False' so hopefully that will fix it (though I really don't think it will).
I don't know if Hella downloads all the par2 files or not. When the download stops the queued file is NOT removed so when I restart Hella the file gets downloaded a second time if
I don't remove it from the queue. Very irritating.

Offline

#11 2008-12-29 12:25:22

HyperBaton
Member
From: Belgium
Registered: 2008-01-18
Posts: 207

Re: Hellanzb stops downloading after every download

You can usually tell from the log or the application itself if it's downloading all the par2 files. When using the smart par option it usually says something about skipping a certain number of par2 files. And the syntax for True and False is without the quotes, so best to change it back.

Offline

#12 2008-12-29 12:38:24

Perre
Member
Registered: 2008-01-22
Posts: 189

Re: Hellanzb stops downloading after every download

I checked the log and it's skipping pars so I guess Hellanzb.SMART_PAR = False is initiated (I removed the quotes). Seems the problem might be similar (or exactly the same) as this one:

http://www.hellanzb.com/trac/hellanzb/t … #comment:6

so I'll try to manaully fix it with

I encountered the same thing, the problem here is extra space in the group

2008-05-02 10:57:45,779 easynews[3] got GROUP: alt.binaries.tv 2008-05-02 10:57:45,784 easynews[3] getting GROUP: alt.binaries.tv

these are actually: (notice the '|' I added for debugging purpose.)

2008-05-02 10:57:45,779 easynews[3] got GROUP: |alt.binaries.tv| 2008-05-02 10:57:45,784 easynews[3] getting GROUP: | alt.binaries.tv|

I did a quick hack to get around this issue:

vi Hellanzb/NZBLeecher/Protocol.py, search for 'getting GROUP', and strip the space in group before that:

    if not self.factory.skipGroupCmd:

        # Change group for group in self.currentSegment.nzbFile.groups:

+ group = group.strip()

    # NOTE: we could get away with activating only one of the groups instead # of all if group not in self.activeGroups and group not in self.failedGroups:

        debug(str(self) + ' getting GROUP: |' + group + '|') self.fetchGroup(group) return

This is by no means a proper fix, but should get you around this stuck issue. Hope this helps..

Yifang

I really hope this will fix the problem.
Thanks for helping me out HyperBaton! smile

Offline

#13 2008-12-29 12:45:39

HyperBaton
Member
From: Belgium
Registered: 2008-01-18
Posts: 207

Re: Hellanzb stops downloading after every download

Well if it's skipping par2 files, then it's not respecting the option you have set by setting it to False. It should download ALL par2 files and then just use them in case of a repair. Stupid question maybe, but you are editing the correct hellanzb.conf and restarting the daemon after editing?

The startup script uses the config settings specified in /etc/conf.d/hellanzb.

And concerning that bug report patch, let us know if that fixes it.

Offline

#14 2008-12-29 13:20:43

Perre
Member
Registered: 2008-01-22
Posts: 189

Re: Hellanzb stops downloading after every download

Probably skipped the files because of the quotes then and I didn't restart Hella (after removing them) before the download finished. I've restarted it now and I'm checking to see if it will listen to Hellanzb.SMART_PAR = False this time.
Have to download some movies to check it out. Just downloaded some music and it worked fine.

I've only got the ~/.config/hellanzb.conf file so it has to be the right file. smile

Offline

#15 2008-12-29 23:18:26

Perre
Member
Registered: 2008-01-22
Posts: 189

Re: Hellanzb stops downloading after every download

Hmm... I've tried to manually add the code to '/usr/lib/python2.6/site-packages/Hellanzb/NZBLeecher/Protocol.py', but that seemed to break it and it wouldn't start. I also
set 'Hellanzb.SMART_PAR = False' but it didn't seem to change anything. I tried to reinstall hella, but the downloading still stops when the downloaded nzb is supposed to be processed.

It seems neither the unrar prosessing or the downloading of the next nzb starts. In other words the nzb will be 100 % downloaded, but the nzb before it will still be
present in the daemon.processing folder. The current nzb doesn't get removed from the deamon.current folder either. Hellanzb acts as if there's nothing to download.
Since the nzb processing starts when I restart hella it can't be the unraring that doesn't work. Before I formated and reinstalled arch a couple of months ago hella worked just perfectly.
What has changed? :(


Here's my hellanzb.conf and hellanzb.log. Maybe someone sees something irregular...

# 
# hellanzb.conf - sample hellanzb configuration file
#
# To quickly get started, change the default defineServer() call and the
# Hellanzb.PREFIX_DIR directory
#
# This is actually interpreted python code: strings must be surrounded by
# quotes, numbers and the 'None' keyword should not
# 
# $Id: hellanzb.conf.sample 1057 2007-03-27 04:13:53Z pjenvey $

# Log output to this file, set to None (no single quotes) for no logging
Hellanzb.LOG_FILE = '/var/tmp/hellanzb.log'

# Uncomment this line to log DEBUG messages to the specified file
Hellanzb.DEBUG_MODE = '/var/tmp/hellanzb-debug.log'

# Automatically roll over both log files when they reach LOG_FILE_MAX_BYTES
# size
Hellanzb.LOG_FILE_MAX_BYTES = 500000

# Save LOG_FILE_BACKUP_COUNT of those rolled over log files
Hellanzb.LOG_FILE_BACKUP_COUNT = 0


# Define server connections. Servers can have multiple hosts, hellanzb will
# persist the number of connections to each specified server. There may be
# multiple defineServer lines.

# Set both the username and password to 'None' (without the quotes) if your
# usenet server does not require authorization
defineServer(id = '*********',
             hosts = [ '*************************' ],
             #hosts = [ 'news.changeme.com', 'morenews.changeme.com:8000' ],


             username = '************',
             password = '************',
             #username = None,           # no auth
             #password = None,

             connections = 10,
             antiIdle = 4.5 * 60,        # 4 minutes, 30 seconds, 0 to disable
             #bindTo = '204.31.33.7',    # connect FROM this ip address
             #enabled = False,           # disable this server
             #skipGroupCmd = False,      # skip sending nntp GROUP commands
             #fillserver = 0,            # defaults to 0 (a main server).
                                         # fillservers must have values > 0
                                         # (priority)
             ssl = False
             )

# Uncomment this line to limit all server connections to the specified KB/s
# bandwidth
#Hellanzb.MAX_RATE = 150 # limit to 150kB/s


# Important locations
Hellanzb.PREFIX_DIR = '/home/per/.hellanzb'

# Where to put queued .nzb files
Hellanzb.QUEUE_DIR = '/home/per/.hellanzb/daemon.queue/'

# Where the fully processed archives go
Hellanzb.DEST_DIR = '/home/per/downloads/hellanzb'

# The .nzb currently being downloaded is stored here
Hellanzb.CURRENT_DIR = '/home/per/.hellanzb/daemon.current/'

# The archive currently being downloaded is stored here
Hellanzb.WORKING_DIR = '/home/per/.hellanzb/daemon.working/'

# Archives interrupted in the middle of downloading are stored here temporarily
Hellanzb.POSTPONED_DIR = '/home/per/.hellanzb/daemon.postponed/'

# Archives currently being processed. May contains archive directories, or
# symbolic links to archive directories
Hellanzb.PROCESSING_DIR = '/home/per/.hellanzb/daemon.processing/'

# Temp storage
Hellanzb.TEMP_DIR = '/home/per/.hellanzb/daemon.temp/'

# Filename to store hellanzb state in between CTRL-Cs. The state (includes the
# order of the queue, and smart par recovery information) is intermittently
# written out as XML to this file
Hellanzb.STATE_XML_FILE = '/home/per/.hellanzb/hellanzbState.xml'


# _Sub directory within the nzb archive dir_ to move processed files to
Hellanzb.PROCESSED_SUBDIR = 'processed'

# Remove the PROCESSED_SUBDIR if the archive was successfully post processed. 
# Warning: The normal Hellanzb.LOG_FILE should be enabled with this option --
# for a record of what hellanzb deletes
Hellanzb.DELETE_PROCESSED = True


# Maximum amount of memory used to cache encoded Article data segments.
# hellanzb will write article data to disk when this cache is exceeded
# Available settings:
# -1: Unlimited size
#  0: Disable cache (only cache to disk)
# >0: Limit cache to this size, in bytes, KB, MB, e.g.:
#     1024 '1024KB' '100MB' '1GB'
#Hellanzb.CACHE_LIMIT = 0


# Save archives into a sub directory of DEST_DIR named after their newzbin.com
# category (when queued using the enqueuenewzbin XMLRPC call); e.g. Apps,
# Movies, Music
Hellanzb.CATEGORIZE_DEST = False

# Disable SMART_PAR (download all PAR files)
Hellanzb.SMART_PAR = False

# Supply a path to the (un)rar command
#Hellanzb.UNRAR_CMD = None

# Supply a path to the par2 command
#Hellanzb.PAR2_CMD = None

# Skip unraring during post processing
#Hellanzb.SKIP_UNRAR = False

# Supply a path to the optional macbinconv command (for converting MacBinary
# files)
#Hellanzb.MACBINCONV_CMD = None

# hellanzb inherits the umask from the current user's environment (unless it's
# running in daemon mode). The umask can be forced with this option
#Hellanzb.UMASK = 0022


# Supported music types (case insensitive) and optionally their decompression
# executables
# and the file type that executable will decompress to (case insensitive). The
# exes must be in the PATH.
#
# <FILE> will be replaced with the name of music file
# optional <DESTFILE> is <FILE> with the specified extension
#
# None means these files don't need to be decompressed
defineMusicType('wav', None, None)
defineMusicType('mp3', None, None)
#defineMusicType('ape', 'mac <FILE> <DESTFILE> -d', 'wav')
#defineMusicType('flac', 'flac -d -- <FILE>', 'wav')
#defineMusicType('shn', 'shorten -x < <FILE> > <DESTFILE>', 'wav')

# Max files we should decompress at the same time
Hellanzb.MAX_DECOMPRESSION_THREADS = 1


# Enable Mac OS X Growl notifications
Hellanzb.GROWL_NOTIFY = False

# The growl notification server, in the format 'hostname'
Hellanzb.GROWL_SERVER = 'IP'

# The growl password
Hellanzb.GROWL_PASSWORD = 'password'


# Enable libNotify Daemon notifications
#Hellanzb.LIBNOTIFY_NOTIFY = False

# Disable ANSI color codes in the main screen (preserves the in place scroller)
#Hellanzb.DISABLE_COLORS = False

# Disable ALL ANSI color codes in the main screen (for terminals that don't
# support ANY ANSI codes
#Hellanzb.DISABLE_ANSI = False


# Hostname for the XMLRPC client to connect to. By default, localhost
Hellanzb.XMLRPC_SERVER = 'localhost'

# Port number the XML RPC server will listen on, and the client will connect to.
# Set to 'None' (without the quotes!) for no XML RPC server
Hellanzb.XMLRPC_PORT = 8760

# Password for the XML RPC server. You might probably never use this, but the
# command line XML RPC calls do -- it should definitely be changed from its
# default value. The XML RPC username is hardcoded as 'hellanzb' -- E.g. URL:
# http://hellanzb:changeme@localhost:8760
Hellanzb.XMLRPC_PASSWORD = 'changeme'


# Username/Password to http://www.newzbin.com for automatic NZB downloading
Hellanzb.NEWZBIN_USERNAME = None
Hellanzb.NEWZBIN_PASSWORD = None


# If any of the following file types are missing from the archive and cannot be
# repaired, continue processing because they're unimportant (case insensitive)
Hellanzb.NOT_REQUIRED_FILE_TYPES = [ 'log', 'm3u', 'nfo', 'nzb', 'sfv', 'txt' ]

# Don't get rid of (move into the PROCESSED dir) the following file types when
# finished post processing (case insensitive)
#Hellanzb.KEEP_FILE_TYPES = [ 'log', 'm3u', 'nfo', 'nzb', 'sfv', 'txt' ]
Hellanzb.KEEP_FILE_TYPES = [ 'nfo', 'txt' ]


# List of alternative file extensions matched as NZB files in the QUEUE_DIR.
# The 'nzb' file extension is always matched
#Hellanzb.OTHER_NZB_FILE_TYPES = [ 'xml' ]

# Support extracting NZBs from ZIP files with this suffix (case insensitive) in
# QUEUE_DIR. Defaults to '.nzb.zip'. Set to False to disable.
#Hellanzb.NZB_ZIPS = '.nzb.zip'

# Support extracting NZBs from GZIP files with this suffix (case insensitive)
# in QUEUE_DIR. Defaults to '.nzb.gz'. Set to False to disable.
#Hellanzb.NZB_GZIPS = '.nzb.gz'

# Delay enqueueing new, recently modified NZB files added to the QUEUE_DIR until
# this many seconds have passed since the NZB's last modification time (defaults
# to 10 seconds)
#Hellanzb.NZBQUEUE_MDELAY = 10

# Optional external handler script. hellanzb will run this script after post
# processing an archive, with the following arguments:
#
# handler_script type archiveName destDir elapsedTime parMessage
#
# type: post processing result, either 'SUCCESS' or 'ERROR'
# archiveName: name of the archive, e.g. 'Usenet_Post5'
# destDir: where the archive ended up, e.g. '/ext2/usenet/Usenet_Post5'
# elapsedTime: a pretty string showing how long post processing took, e.g.
#              '10m 37s'
# parMessage: optional post processing message. e.g. '(No Pars)'
#Hellanzb.EXTERNAL_HANDLER_SCRIPT = '~/bin/post_hellanzb.sh'
2008-12-29 22:06:27,585 INFO Skipping pars.. (Skipped par2: ghosttown-septic.vol000+01.PAR2 (1MB))
2008-12-29 22:06:33,550 INFO Skipped pars: 9 files, 242.9MB (actual skipped: 239.5MB)
2008-12-29 22:06:33,551 INFO  ghosttown-septic.vol000+01.PAR2 ->
 ghosttown-septic.vol100+27.PAR2 (127 blocks)
2008-12-29 23:24:53,219 INFO 
2008-12-29 23:24:53,239 INFO Transferred 4625.6MB in 1h 19m 6s at 998.0KB/s (Ghost Town 2008 720p BluRay x264-SEPTiC)
2008-12-29 23:24:53,734 INFO Downloading: Survivorman.S03E06.720p.HDTV.x264-GNARLY
2008-12-29 23:24:53,742 INFO Ghost Town 2008 720p BluRay x264-SEPTiC: Verifying via par group: ghosttown-septic*.{par2,PAR2}..
2008-12-29 23:24:53,852 INFO Parsing: Survivorman.S03E06.720p.HDTV.x264-GNARLY.nzb...
2008-12-29 23:24:54,091 INFO Parsed: 32 files (3215 posts), 1219.1MB
2008-12-29 23:24:54,158 INFO Queued: 1219.1MB
2008-12-29 23:24:58,413 INFO Skipping pars.. (Skipped par2: survivorman.s03e06.720p.hdtv.x264-gnarly.vol15+3.par2 (10MB))
2008-12-29 23:25:08,292 INFO Skipped pars: 5 files, 61.5MB (actual skipped: 59.6MB)
2008-12-29 23:25:08,293 INFO  survivorman.s03e06.720p.hdtv.x264-gnarly.vol00+1.par2 ->
 survivorman.s03e06.720p.hdtv.x264-gnarly.vol15+3.par2 (18 blocks)
2008-12-29 23:27:42,160 INFO Ghost Town 2008 720p BluRay x264-SEPTiC: Finished par verify (1 par group, took: 2m 48s)
2008-12-29 23:27:43,270 INFO Ghost Town 2008 720p BluRay x264-SEPTiC: Unraring ghosttown-septic.rar..
2008-12-29 23:32:25,886 INFO Ghost Town 2008 720p BluRay x264-SEPTiC: Finished unraring (1 rar group, took: 4m 42s)
2008-12-29 23:32:25,904 LOGFILE Deleting processed dir: Ghost Town 2008 720p BluRay x264-SEPTiC/processed, it contains: ['.par_done', '.rar_done', 'Ghost Town 2008 720p BluRay x264-SEPTiC.nzb', 'ghosttown-septic.par2', 'ghosttown-septic.r00', 'ghosttown-septic.r01', 'ghosttown-septic.r02', 'ghosttown-septic.r03', 'ghosttown-septic.r04', 'ghosttown-septic.r05', 'ghosttown-septic.r06', 'ghosttown-septic.r07', 'ghosttown-septic.r08', 'ghosttown-septic.r09', 'ghosttown-septic.r10', 'ghosttown-septic.r11', 'ghosttown-septic.r12', 'ghosttown-septic.r13', 'ghosttown-septic.r14', 'ghosttown-septic.r15', 'ghosttown-septic.r16', 'ghosttown-septic.r17', 'ghosttown-septic.r18', 'ghosttown-septic.r19', 'ghosttown-septic.r20', 'ghosttown-septic.r21', 'ghosttown-septic.r22', 'ghosttown-septic.r23', 'ghosttown-septic.r24', 'ghosttown-septic.r25', 'ghosttown-septic.r26', 'ghosttown-septic.r27', 'ghosttown-septic.r28', 'ghosttown-septic.r29', 'ghosttown-septic.r30', 'ghosttown-septic.r31', 'ghosttown-septic.r32', 'ghosttown-septic.r33', 'ghosttown-septic.r34', 'ghosttown-septic.r35', 'ghosttown-septic.r36', 'ghosttown-septic.r37', 'ghosttown-septic.r38', 'ghosttown-septic.r39', 'ghosttown-septic.r40', 'ghosttown-septic.r41', 'ghosttown-septic.r42', 'ghosttown-septic.r43', 'ghosttown-septic.r44', 'ghosttown-septic.r45', 'ghosttown-septic.r46', 'ghosttown-septic.r47', 'ghosttown-septic.r48', 'ghosttown-septic.r49', 'ghosttown-septic.r50', 'ghosttown-septic.r51', 'ghosttown-septic.r52', 'ghosttown-septic.r53', 'ghosttown-septic.r54', 'ghosttown-septic.r55', 'ghosttown-septic.r56', 'ghosttown-septic.r57', 'ghosttown-septic.r58', 'ghosttown-septic.r59', 'ghosttown-septic.r60', 'ghosttown-septic.r61', 'ghosttown-septic.r62', 'ghosttown-septic.r63', 'ghosttown-septic.r64', 'ghosttown-septic.r65', 'ghosttown-septic.r66', 'ghosttown-septic.r67', 'ghosttown-septic.r68', 'ghosttown-septic.r69', 'ghosttown-septic.r70', 'ghosttown-septic.r71', 'ghosttown-septic.r72', 'ghosttown-septic.r73', 'ghosttown-septic.r74', 'ghosttown-septic.r75', 'ghosttown-septic.r76', 'ghosttown-septic.r77', 'ghosttown-septic.r78', 'ghosttown-septic.r79', 'ghosttown-septic.r80', 'ghosttown-septic.r81', 'ghosttown-septic.r82', 'ghosttown-septic.r83', 'ghosttown-septic.r84', 'ghosttown-septic.r85', 'ghosttown-septic.r86', 'ghosttown-septic.r87', 'ghosttown-septic.r88', 'ghosttown-septic.r89', 'ghosttown-septic.r90', 'ghosttown-septic.r91', 'ghosttown-septic.r92', 'ghosttown-septic.rar', 'ghosttown-septic.sfv', 'ghosttown-septic.vol000+01.PAR2.segment0001', 'ghosttown-septic.vol001+02.PAR2.segment0001', 'ghosttown-septic.vol003+04.PAR2.segment0001', 'ghosttown-septic.vol007+07.PAR2.segment0001', 'ghosttown-septic.vol014+11.PAR2.segment0001', 'ghosttown-septic.vol025+21.PAR2.segment0001', 'ghosttown-septic.vol046+27.PAR2.segment0001', 'ghosttown-septic.vol073+27.PAR2.segment0001', 'ghosttown-septic.vol100+27.PAR2.segment0001', 's-ghosttown.nzb']

2008-12-29 23:32:34,515 INFO Ghost Town 2008 720p BluRay x264-SEPTiC: Finished processing (took: 7m 40s) (total: 1h 26m 47s)
2008-12-29 23:45:11,200 INFO 
2008-12-29 23:45:11,202 INFO Transferred 1156.8MB in 20m 17s at 973.3KB/s (Survivorman.S03E06.720p.HDTV.x264-GNARLY)

The last sentence in hellanzb-debug.log is:

23:45:11,674 Empty NZB queue: disconnecting astraweb (antiIdle is 0)

even though I still have nzbs in the queue.


Thanks for helping me out with this. :)

Offline

#16 2008-12-30 08:08:49

HyperBaton
Member
From: Belgium
Registered: 2008-01-18
Posts: 207

Re: Hellanzb stops downloading after every download

Pfff, it sure sounds like the exact same problem I had. Strange that the smart par fix did not work for you. I'm out of ideas I think sad

Offline

#17 2008-12-30 13:46:05

Perre
Member
Registered: 2008-01-22
Posts: 189

Re: Hellanzb stops downloading after every download

Yeah, it's probably the same issue. I've seen other people getting it fixed with your sollution so I'm really not sure why it doesn't work for me.

Anyways, today I've downloaded a couple of movies and it seems to be working right now. I noticed yesterday that at least one of my downloads in the processing folder only had root permissions. So I made sure every folder and file in my home partition has full user permissions. Maybe this will fix it. Thanks again for the help HyperBaton! smile


Edit: And then it failed again... This is driving me crazy!

Edit 2: Well, I completely removed hellanzb and all dependencies and then reinstalled. It seems to be working at the moment. Hopefully the problem was with the actual whitespace patch not being correctly added when reinstalling over the old install through yaourt. Hopefully... neutral

Last edited by Perre (2008-12-30 15:47:59)

Offline

#18 2008-12-30 19:00:04

Diaz
Member
From: Portugal
Registered: 2008-04-16
Posts: 366

Re: Hellanzb stops downloading after every download

just to be sure, do you have enough space in the folder you're downloading to? i only have strange problems with hella when i don't have hdd space. and recently i have other problem, but not really serious: if the nzb it is downloading can't be repaired/extracted it just hangs and stops downloading. in this case i verify manually and delete the download.

Offline

#19 2008-12-30 19:20:09

Perre
Member
Registered: 2008-01-22
Posts: 189

Re: Hellanzb stops downloading after every download

Diaz wrote:

just to be sure, do you have enough space in the folder you're downloading to? i only have strange problems with hella when i don't have hdd space. and recently i have other problem, but not really serious: if the nzb it is downloading can't be repaired/extracted it just hangs and stops downloading. in this case i verify manually and delete the download.

I've got plenty of space so that can't be it. But your recent problem seems alot like mine. The download hangs, I delete it, restart hella and the next download continues. This isn't too big of a problem, but it's really annoying when I leave my computer on through the night for downloading only to see that downloading stopped after the first file and my queue is still full. sad

Offline

#20 2008-12-30 21:22:41

Diaz
Member
From: Portugal
Registered: 2008-04-16
Posts: 366

Re: Hellanzb stops downloading after every download

Perre wrote:
Diaz wrote:

just to be sure, do you have enough space in the folder you're downloading to? i only have strange problems with hella when i don't have hdd space. and recently i have other problem, but not really serious: if the nzb it is downloading can't be repaired/extracted it just hangs and stops downloading. in this case i verify manually and delete the download.

I've got plenty of space so that can't be it. But your recent problem seems alot like mine. The download hangs, I delete it, restart hella and the next download continues. This isn't too big of a problem, but it's really annoying when I leave my computer on through the night for downloading only to see that downloading stopped after the first file and my queue is still full. sad

ok, if that's it we have the same problem then hmm

does anyone knows if the devs are working on the app? with so many bugs i find it strange that there isn't new versions coming.

Offline

#21 2008-12-30 21:51:17

Perre
Member
Registered: 2008-01-22
Posts: 189

Re: Hellanzb stops downloading after every download

I hope they are. HellaNZB is amazing when it's working, but if download isn't working 4 out of 10 times is kinda a big deal. sad
I wish I had the knowledge to fix it myself though...

Offline

#22 2008-12-30 23:59:05

nj
Member
Registered: 2007-04-06
Posts: 93

Re: Hellanzb stops downloading after every download

I don't think that log file is using the config file you posted. The first line says 'Skipping pars' so the smart par setting is turned on (i.e. set to True). Make sure it really is loading up the config.

Development on hellanzb seems to have stopped around a year and half ago.

If you can't get it working, you might want to try sabnzb which is also in the aur.

Offline

#23 2009-01-14 16:28:35

Spider.007
Member
Registered: 2004-06-20
Posts: 1,175

Re: Hellanzb stops downloading after every download

community/nzbget was the only solution for me; hellanzb just stopped after each download without any notice

Offline

#24 2009-07-09 00:53:31

Fungyo
Member
Registered: 2009-04-13
Posts: 42

Re: Hellanzb stops downloading after every download

sabnzbd in AUR works good for me

Offline

Board footer

Powered by FluxBB