Search found 9162 matches
- February 8th, 2025, 3:25 pm
- Forum: General Help
- Topic: Pre_queque script
- Replies: 9
- Views: 6198
Re: Pre_queque script
example: Night.Rider.25.02.05.WRB.DIVX.ETC becomes: Night Rider (2025) Not with the script you provided: $ ./prequeue-richard63nl.py "Night.Rider.25.02.05.WRB.DIVX.ETC" postprocflags in_category script prio downloadsize grouplist 1 Night Rider 25 02 05 WRB DIVX.ETC movies $
- February 8th, 2025, 2:59 pm
- Forum: General Help
- Topic: Pre_queque script
- Replies: 9
- Views: 6198
Re: Pre_queque script
Please describe what is working on your local system: both from the CLI and from SABnzbd
Because, for example ... do you have python3 installed on your system?
Is the script called, and working (sometimes)?
There is no she-bang. Is it executable?
Where are the test cases?
Because, for example ... do you have python3 installed on your system?
Is the script called, and working (sometimes)?
There is no she-bang. Is it executable?
Where are the test cases?
- February 7th, 2025, 10:01 am
- Forum: General Help
- Topic: Speeds dipping down to 0
- Replies: 7
- Views: 3910
Re: Speeds dipping down to 0
Nice computer.
So I suspect your wifi: your wifi itself, and your wifi access point / router. The newsserver traffic is heavy stuff, and thus wifi / routers might fail.
So I suspect your wifi: your wifi itself, and your wifi access point / router. The newsserver traffic is heavy stuff, and thus wifi / routers might fail.
- February 7th, 2025, 9:16 am
- Forum: General Help
- Topic: Speeds dipping down to 0
- Replies: 7
- Views: 3910
Re: Speeds dipping down to 0
wifi, system is running Windows 10. What other specs would be helpful or relevant? wifi ... bad. Connect wire. Lower the number of newsserver connections to ... 10, and try again. And system specs: Whiles SABnzbd is not doing anything : In SABnzbd's upper right corner, click on the wrench symbol (&...
- February 7th, 2025, 12:59 am
- Forum: General Help
- Topic: Speeds dipping down to 0
- Replies: 7
- Views: 3910
Re: Speeds dipping down to 0
wifi or wired?
specs of the system running SABnzbd?
specs of the system running SABnzbd?
- February 6th, 2025, 1:05 am
- Forum: General Help
- Topic: Pre_queque script
- Replies: 9
- Views: 6198
- February 5th, 2025, 3:37 pm
- Forum: General Help
- Topic: Pre_queque script
- Replies: 9
- Views: 6198
Re: Pre_queque script
Post the code?
- February 5th, 2025, 1:01 am
- Forum: General Help
- Topic: Infinite Redirect
- Replies: 3
- Views: 1301
Re: Infinite Redirect
your post too https://github.com/sabnzbd/sabnzbd/issues/3028 ?
- February 3rd, 2025, 11:14 am
- Forum: General Help
- Topic: Files download to temporary folder until it is full. No files are moved to complete folder.
- Replies: 3
- Views: 2711
Re: Files download to temporary folder until it is full. No files are moved to complete folder.
It was unrar? That is started by SABnzbd itself. Weird. Although: could still be your virusscanner blocking unrar.
Good it works now again.
Good it works now again.
- February 3rd, 2025, 10:17 am
- Forum: General Help
- Topic: Files download to temporary folder until it is full. No files are moved to complete folder.
- Replies: 3
- Views: 2711
Re: Files download to temporary folder until it is full. No files are moved to complete folder.
download_dir = f:\Download complete_dir = r:\d movies 2025-02-03 15:35:12,753::DEBUG::[filesystem:986] Removing dir recursively f:\Download\A.DOGS.PURPOSE.2017.1080P.BLURAY.DTS-HD 2025-02-03 15:35:12,753::INFO::[filesystem:990] Cannot remove folder f:\Download\A.DOGS.PURPOSE.2017.1080P.BLURAY.DTS-HD...
- February 2nd, 2025, 4:03 pm
- Forum: General Help
- Topic: how do i setup this with nbz clawler so i can download right the site so i can just click it and it add it to my sabnbzd
- Replies: 2
- Views: 2046
Re: how do i setup this with nbz clawler so i can download right the site so i can just click it and it add it to my sab
What do you mean exactly with "nbz clawler"?
If you mean https://www.usenet-crawler.com/ ... what do you get on https://www.usenet-crawler.com/cart ?
If you mean https://www.usenet-crawler.com/ ... what do you get on https://www.usenet-crawler.com/cart ?
- January 30th, 2025, 1:47 pm
- Forum: General Help
- Topic: "Lost Connection," Signal 15 & Restart
- Replies: 12
- Views: 6613
- January 30th, 2025, 4:24 am
- Forum: General Help
- Topic: "Lost Connection," Signal 15 & Restart
- Replies: 12
- Views: 6613
Re: "Lost Connection," Signal 15 & Restart
So ... this hack method seems to work. Can you verify?
We might consider developing an option "ignore_sigterm=1" in sabnzbd.ini so the hacking is not needed. I need the advice from Safihre on that.
We might consider developing an option "ignore_sigterm=1" in sabnzbd.ini so the hacking is not needed. I need the advice from Safihre on that.
- January 30th, 2025, 4:20 am
- Forum: General Help
- Topic: "Lost Connection," Signal 15 & Restart
- Replies: 12
- Views: 6613
Re: "Lost Connection," Signal 15 & Restart
Docker: docker run -p 8080:8080 -v /home/sander/docker-sabnzbd-config:/config -v /home/sander/docker-sabnzbd-downloads:/downloads lscr.io/linuxserver/sabnzbd:latest From another terminal: go into the running Docker container docker exec b58140df4bbc -it /bin/bash root@b58140df4bbc:/# cd /app/sabnzbd...
- January 30th, 2025, 4:09 am
- Forum: General Help
- Topic: "Lost Connection," Signal 15 & Restart
- Replies: 12
- Views: 6613
Re: "Lost Connection," Signal 15 & Restart
The basics, without Docker: $ sed -i -e 's/signal.SIGTERM, sabnzbd.sig_handler/signal.SIGTERM, signal.SIG_IGN/' SABnzbd.py Check: $ cat SABnzbd.py | grep SIGTERM signal.signal(signal.SIGTERM, signal.SIG_IGN) Good. Starting that SABnzbd.py ... a kill -15 is nicely ignored by SABnzbd. Next step: Docke...