Search found 9162 matches

by sander
February 8th, 2025, 3:25 pm
Forum: General Help
Topic: Pre_queque script
Replies: 9
Views: 6209

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 $
by sander
February 8th, 2025, 2:59 pm
Forum: General Help
Topic: Pre_queque script
Replies: 9
Views: 6209

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?
by sander
February 7th, 2025, 10:01 am
Forum: General Help
Topic: Speeds dipping down to 0
Replies: 7
Views: 3918

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.
by sander
February 7th, 2025, 9:16 am
Forum: General Help
Topic: Speeds dipping down to 0
Replies: 7
Views: 3918

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 (&...
by sander
February 7th, 2025, 12:59 am
Forum: General Help
Topic: Speeds dipping down to 0
Replies: 7
Views: 3918

Re: Speeds dipping down to 0

wifi or wired?
specs of the system running SABnzbd?
by sander
February 5th, 2025, 3:37 pm
Forum: General Help
Topic: Pre_queque script
Replies: 9
Views: 6209

Re: Pre_queque script

Post the code?
by sander
February 5th, 2025, 1:01 am
Forum: General Help
Topic: Infinite Redirect
Replies: 3
Views: 1305

Re: Infinite Redirect

by sander
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: 2714

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.
by sander
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: 2714

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...
by sander
January 30th, 2025, 1:47 pm
Forum: General Help
Topic: "Lost Connection," Signal 15 & Restart
Replies: 12
Views: 6626

Re: "Lost Connection," Signal 15 & Restart

safihre wrote: January 30th, 2025, 12:28 pm We can't ignore it. See jcfps comment, this is completely expected behavior to act on it.
I had missed jcfp's post.

Clear.
by sander
January 30th, 2025, 4:24 am
Forum: General Help
Topic: "Lost Connection," Signal 15 & Restart
Replies: 12
Views: 6626

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.
by sander
January 30th, 2025, 4:20 am
Forum: General Help
Topic: "Lost Connection," Signal 15 & Restart
Replies: 12
Views: 6626

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...
by sander
January 30th, 2025, 4:09 am
Forum: General Help
Topic: "Lost Connection," Signal 15 & Restart
Replies: 12
Views: 6626

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...