Search found 8821 matches

by sander
July 7th, 2012, 5:05 am
Forum: Nederlands
Topic: SABnzbd start héel langzaam (niet) op
Replies: 20
Views: 21976

Re: SABnzbd start héel langzaam (niet) op

Ik zou dit doen: een CMD box openen (via Windows R), naar de goede directory lopen, en dan SABnzbd-console.exe starten: SABnzbd geeft dan output naar het scherm. Doel: Je ziet dan of het starten van SABnzbd langzaam gaat, of dat het verbinden van de browser langzaam gaat. Wat ook nuttig is: in een a...
by sander
July 6th, 2012, 10:12 pm
Forum: Post-Processing Scripts
Topic: Delete files smaller than XXMB
Replies: 15
Views: 10748

Re: Delete files smaller than XXMB

If (as?) such a Python script is not here, are you willing to write it yourself? Python is a great language, and it will only take a few lines of code.
by sander
July 6th, 2012, 9:42 pm
Forum: Post-Processing Scripts
Topic: Simple script to replace spaces w/dots for movies category?
Replies: 12
Views: 6499

Re: Simple script to replace spaces w/dots for movies catego

Just run it from the command line. Change the '.' to the correct directory.

If that works, you can procreed to call it from SABnzbd
by sander
July 6th, 2012, 1:17 am
Forum: General Help
Topic: Changed https port and now sab is gone
Replies: 1
Views: 922

Re: Changed https port and now sab is gone

You need root/admin/superuser rights to use a port lower than 1024. And 443 is lower than 1024, so ... google "osx run as administrator" for help. I haven't got OSX so I can't tell. Maybe OSX has "sudo" too?
by sander
July 5th, 2012, 6:46 am
Forum: General Help
Topic: Download repair failing
Replies: 1
Views: 919

Re: Download repair failing

It's about "Repair failed, not enough repair blocks (41 short)".

See explanation here: http://wiki.sabnzbd.org/faq#toc30
by sander
July 5th, 2012, 3:36 am
Forum: Post-Processing Scripts
Topic: Simple script to replace spaces w/dots for movies category?
Replies: 12
Views: 6499

Re: Simple script to replace spaces w/dots for movies catego

A python script you can run to replace spaces in directory names with dots. Developed and tested on Linux. import os for path, dirnames, filenames in os.walk('.'): for dirname in dirnames: if dirname.find(' ') > -1 : # Yes, a space in the directory name, so replace it: newname = dirname.replace(' ',...
by sander
July 3rd, 2012, 3:50 pm
Forum: Post-Processing Scripts
Topic: Searching subtitle script / program
Replies: 2
Views: 2817

Re: Searching subtitle script / program

Thanks to your post, I'm now using autosub / auto-sub ... cool program!

Sorry I can't help you with your question. ;-)
by sander
July 3rd, 2012, 12:00 pm
Forum: Nederlands
Topic: No PAR2 program found, repairs not possible
Replies: 11
Views: 5840

Re: No PAR2 program found, repairs not possible

Iemand die dit anders via teamviewer voor mij eens zou kunnen fixen aub? Dat is natuurlijk niet zo leerzaam voor jou ... maar ik wil wel een poging doen. Ik zie dat er teamviewer voor Linux is (draait met Wine) ... dus wat nu? Jij moet mij een "Partner ID" geven? Trouwens: een SSH-shell g...
by sander
July 3rd, 2012, 6:55 am
Forum: General Help
Topic: Cant use internet when SABNZBD is in use **HELP**
Replies: 24
Views: 14933

Re: Cant use internet when SABNZBD is in use **HELP**

Which OS?
How many newsserver connections? Tip: lower to 2 to avoid modem NAT list problems.

Good test on Linux (OS X?): "ping -n 8.8.8.8", and keep that running.
by sander
July 3rd, 2012, 2:12 am
Forum: Debian/Ubuntu Package
Topic: Upgrade Sab 0.6.15 Installed from Ubuntu Software Center
Replies: 4
Views: 3852

Re: Upgrade Sab 0.6.15 Installed from Ubuntu Software Center

I had tried that PPA during an earlier experiment and it gave me a version other then 0.7 (after 0.7 was out). Is it upto date now? Do I just follow the instructions to thee letter or do I need to do something different since I'm upgrading? See https://launchpad.net/~jcfp/+archive/ppa to check the ...
by sander
July 2nd, 2012, 10:46 am
Forum: General Help
Topic: Cannot create backup file \AppData\Local\sabnzbd\sabnzbd.ini
Replies: 12
Views: 11810

Re: Cannot create backup file \AppData\Local\sabnzbd\sabnzbd

dbrooks wrote:
Out of curiosity, and strictly related to the Windows port, in what locations does SABnzbd+ search for an ini file, and in what order?
See here: http://wiki.sabnzbd.org/faq#toc18

So I would say: no searching. Just one location.
by sander
July 2nd, 2012, 9:28 am
Forum: Bug Reports
Topic: 0.7.0 problems with Mac OS X 10.7 firewall
Replies: 3
Views: 2789

Re: 0.7.0 problems with Mac OS X 10.7 firewall

shypike wrote:Interesting. I thought we solved this some time ago.
There was one stock Python file that kept being re-compiled after each run.
Needless to say that we don't test against OSX firewalls, maybe we should.
... or promote Norbertus to be a release tester, and let him do the tests ...
by sander
July 2nd, 2012, 12:46 am
Forum: General Help
Topic: Slow speeds - new user
Replies: 18
Views: 11033

Re: Slow speeds - new user

OK, let's combine your quotes: My DL speed with Sab is sitting just above 200 KB/s. and: speedtest results: ping - 41ms, DL - 1.99Mbps, UL - 0.57Mbps Mbps (Megabit per second) MBps (Megabyte per second) So: SABnzbd reports 200 KB/s = 2000 Kbps (multiplying by 10, because 8 bits plus 1-2 bits overhea...
by sander
July 1st, 2012, 4:36 pm
Forum: Debian/Ubuntu Package
Topic: Ubuntu 12.10, python 3 and SABnzbd
Replies: 14
Views: 11703

Re: Ubuntu 12.10, python 3 and SABnzbd

Note to myself: The universal method for Python 2.5 - Python 3.2 to put the exception error value into variable "error" is: except ZeroDivisionError: _, error, _ = sys.exc_info() So, in SABnzbd.py. replace each: print "..." with print("..."), ", error:" with &...