Search found 8810 matches

by sander
June 26th, 2015, 3:55 pm
Forum: Feature Requests
Topic: Notifications via SMS
Replies: 4
Views: 3943

Re: Notifications via SMS

You can write a post processing script for that.
by sander
June 25th, 2015, 8:38 am
Forum: Bug Reports
Topic: Final file detected as a sample and deleted in error.
Replies: 11
Views: 10057

Re: Final file detected as a sample and deleted in error.

"Removing unwanted sample file" is printed by funtion remove_samples(), which uses 'sample_match' as regexp criterium: sample_match = r'((^|[\W_])sample\d*[\W_])|(-s\.\w+$)' # something-sample.avi something-s.avi So let's play with that regexp: $ python Python 2.7.6 (default, Mar 22 2014, ...
by sander
June 25th, 2015, 12:24 am
Forum: Bug Reports
Topic: SABnzbd Server Not Responding to Port Ping Requests
Replies: 2
Views: 2486

Re: SABnzbd Server Not Responding to Port Ping Requests

On initial install you get the SABnzbd wizard, which will ask:

Access
"I want SABnzbd to be viewable by any pc on my network."
"I want SABnzbd to be viewable from my pc only."

Did you miss that?
by sander
June 23rd, 2015, 11:52 pm
Forum: Bug Reports
Topic: 0.7.20:sab won't come back after computer returns from sleep
Replies: 12
Views: 5936

Re: 0.7.20:sab won't come back after computer returns from s

Good that it works.

Hypothesis: your IP address changes during the sleep ...
by sander
June 21st, 2015, 9:15 am
Forum: Bug Reports
Topic: 0.7.20:sab won't come back after computer returns from sleep
Replies: 12
Views: 5936

Re: 0.7.20:sab won't come back after computer returns from s

The LISTENING record: is that before or after the sleep?

Can you try "0.0.0.0" instead of 192.168.1.83 as listening port?

And: firewal, or not?
by sander
June 20th, 2015, 4:03 pm
Forum: Feature Requests
Topic: Stop refresh when tab not active
Replies: 14
Views: 15246

Re: Stop refresh when tab not active

Ah, Firefox ... !

Have you tried Chrome / Chromium?

I have left Firefox behind me a long time ago ... because of unexplainable stuttering and stalling. Very annoying.
by sander
June 20th, 2015, 3:39 pm
Forum: Feature Requests
Topic: Stop refresh when tab not active
Replies: 14
Views: 15246

Re: Stop refresh when tab not active

What I don't like is that when I'm browsing other pages it keeps doing a constant 1 second refresh in the unused tab which causes my scrolling to stutter in whatever tab I'm actively looking at. I don't recognize and don't understand that your webbrowser stutters; in my experience the sab web inter...
by sander
June 20th, 2015, 3:37 pm
Forum: Bug Reports
Topic: 0.7.20:sab won't come back after computer returns from sleep
Replies: 12
Views: 5936

Re: 0.7.20:sab won't come back after computer returns from s

Interesting. Do you have a firewall installed on your Windows machine? Further test: check if SABnzbd is still listening like this: C:\Users\Sander>tasklist | find /i "Sab" SABnzbd-helper.exe 2344 Services 0 7.608 K SABnzbd-service.exe 2304 Services 0 26.216 K C:\Users\Sander>netstat -aon ...
by sander
June 20th, 2015, 11:06 am
Forum: Bug Reports
Topic: 0.7.20:sab won't come back after computer returns from sleep
Replies: 12
Views: 5936

Re: 0.7.20:sab won't come back after computer returns from s

And is SABnzbd still running after the sleep? Check the processes (ctrl-alt-del, and then choose correct option)
by sander
June 20th, 2015, 1:56 am
Forum: General Help
Topic: failing to connect to server
Replies: 3
Views: 1610

Re: failing to connect to server

So you do this within a docker container? Did you reboot the whole system?

Which version of SABnzbd?
What if you click on Test Server?
With SAB logging set to +Debug, find the lines: "My IPv4 address = " and "My IPv6 address = ": what do they say?
by sander
June 19th, 2015, 4:52 am
Forum: General Help
Topic: Error : expect one parameter [CP]
Replies: 3
Views: 3723

Re: Error : expect one parameter [CP]

The message "ERROR[.core.downloaders.sabnzbd] Failed sending release, use API key, NOT the NZB key: Traceback (most recent call last): HTTPError: 413 Client Error: Request Entity Too Large" is a CP error message. This is the SAB forum. So back to the basics: is the setup working? If not: g...
by sander
June 16th, 2015, 10:39 am
Forum: General Help
Topic: missing articles
Replies: 6
Views: 5888

Re: missing articles

by sander
June 15th, 2015, 3:24 pm
Forum: General Help
Topic: Problem running SickRage post process script (Exit 127)
Replies: 4
Views: 4220

Re: Problem running SickRage post process script (Exit 127)

On my Ubuntu Linux 'python2' does exist. I didn't even know that. And 'python2' is a link to python2.7: $ ll `which python2` lrwxrwxrwx 1 root root 9 mrt 17 14:00 /usr/bin/python2 -> python2.7 The plain 'python' links to python 2.7, which I did know: $ ll `which python` lrwxrwxrwx 1 root root 9 mrt ...