Package Details: sabnzbd 4.2.3-1

Git Clone URL: https://aur.archlinux.org/sabnzbd.git (read-only, click to copy)
Package Base: sabnzbd
Description: A web-interface based binary newsgrabber with NZB file support
Upstream URL: http://www.sabnzbd.org
Keywords: network usenet
Licenses: GPL
Submitter: esh
Maintainer: fryfrog
Last Packager: fryfrog
Votes: 269
Popularity: 0.30
First Submitted: 2007-11-09 16:21 (UTC)
Last Updated: 2024-03-11 16:27 (UTC)

Latest Comments

« First ‹ Previous 1 .. 58 59 60 61 62 63 64 Next › Last »

Revelation60 commented on 2010-06-05 09:28 (UTC)

Did you edit the sabnzbd.confd file? If you leave the line SABNZBD_USER="sabnzbd" unmodified, it should work.

<deleted-account> commented on 2010-06-05 09:25 (UTC)

If i run sabnzbd as a daemon using /etc/rc.d/sabnzbd start , i can't modify directories folder, it seems i don't have the rights...even if i modify in sabnzbd.ini file, anyone as the same problem ? thx

teek commented on 2010-05-28 07:28 (UTC)

Ah, yes, I see now... thanx, it works now :s

Revelation60 commented on 2010-05-25 08:41 (UTC)

As I said in my previous post, it is required to delete the sabnzbd folder. If you don't old python files will remain on the filesystem and will still be loaded into sabnzbd. This will cause conflicts.

teek commented on 2010-05-25 08:24 (UTC)

Build and installed all dependencies again... same errors.

teek commented on 2010-05-25 07:36 (UTC)

I get eroors with the latest version... any suggestions? [me@mybox ~]$ sabnzbd Traceback (most recent call last): File "/opt/sabnzbd/SABnzbd.py", line 63, in <module> import sabnzbd File "/opt/sabnzbd/sabnzbd/__init__.py", line 66, in <module> import sabnzbd.nzbqueue as nzbqueue File "/opt/sabnzbd/sabnzbd/nzbqueue.py", line 37, in <module> import sabnzbd.assembler File "/opt/sabnzbd/sabnzbd/assembler.py", line 40, in <module> import sabnzbd.postproc File "/opt/sabnzbd/sabnzbd/postproc.py", line 41, in <module> import sabnzbd.emailer as emailer File "/opt/sabnzbd/sabnzbd/emailer.py", line 212, in <module> from email.message import Message ImportError: No module named message

ben-arch commented on 2010-05-23 16:34 (UTC)

Thank you

<deleted-account> commented on 2010-05-04 19:33 (UTC)

I always have the problem that when i use a username and password to login, the daemon either doesnt start or doesnt stop using the default scripts (when you do add the username and pass it doesnt start if you dont add it it doesnt stop). I manually apply the changes to the scripts everytime but maybe you can update the package. Below you can see what i changed in the scripts. conf.d SABNZBD_USER="sabnzbd" SABNZBD_CONF="/opt/sabnzbd/sabnzbd.ini" # Put the session key from Config > General here SABNZBD_KEY="0ed6ebaab38d00260213f31ee8ff7b2e" # Set to the IP and port sabnzbd is listening on # This is needed to stop sabnzbd properly # If you use a username and password to access sabnzbd use "user:pass@ip" SABNZBD_IP="127.0.0.1" SABNZBD_PORT="8080" SABNZBD_USPW="user:pass@" init #!/bin/bash . /etc/rc.conf . /etc/rc.d/functions . /etc/conf.d/sabnzbd case "$1" in start) stat_busy "Starting SABnzbd" if [ -f /var/run/daemons/sabnzbd ]; then echo -n "Sabnzbd is already running as a daemon!" stat_fail else su - $SABNZBD_USER -c "python /opt/sabnzbd/SABnzbd.py -f $SABNZBD_CONF -s $SABNZBD_IP:$SABNZBD_PORT -d" -s /bin/sh if [ $? -gt 0 ]; then stat_fail else add_daemon sabnzbd stat_done fi fi ;; stop) stat_busy "Stopping SABnzbd" curl -f http://$SABNZBD_USPW$SABNZBD_IP:$SABNZBD_PORT/sabnzbd/shutdown?session=$SABNZBD_KEY &> /dev/null if [ $? -gt 0 ]; then stat_fail else rm_daemon sabnzbd stat_done fi ;; restart) $0 stop sleep 1 $0 start ;; *) echo "usage: $0 {start|stop|restart}" esac exit 0

<deleted-account> commented on 2010-05-04 13:14 (UTC)

Thanks Revelation60 and farhany. Used these files with updated PKGBUILD from Revelation and 5.2 install went great. No issues.

farhany commented on 2010-05-04 04:13 (UTC)

New build coming up soon as I get my virtual arch installation working.