Search found 5 matches

by phyber
February 15th, 2011, 3:36 am
Forum: General Help
Topic: Pentium 4 enough for 100 mbit?
Replies: 3
Views: 2450

Re: Pentium 4 enough for 100 mbit?

3.2GHz is overkill for 100Mbit and your issue probably lies elsewhere. If you don't have that many threads (connections to the Usenet server) downloading yet, try adding more. If you believe the hyper-threading could be an issue, you can always test that by disabling it in the BIOS or passing the 'n...
by phyber
February 11th, 2011, 8:03 pm
Forum: General Help
Topic: test nzb before download
Replies: 56
Views: 56523

Re: test nzb before download

It stops responding to ^C since it seems there is a deadlock somewhere, which is a shame. I couldn't work out where it was so I wrote a new script that does exactly what this script does, except it supports SSL and doesn't hang when using it. It also isn't threaded yet, so it's quite a bit slower. I...
by phyber
February 10th, 2011, 10:45 am
Forum: General Help
Topic: Sabnazbdplus Permission error
Replies: 3
Views: 1872

Re: Sabnazbdplus Permission error

Thanks but that's not it as it has permission to all of its folders/files under the user it gets executed as But which directory was that user in when sabnzbd was started? Have the permissions on that directory changed since sabnzbd was started? On Linux, I would look in /proc/ or use 'lsof' to see...
by phyber
February 10th, 2011, 9:59 am
Forum: General Help
Topic: test nzb before download
Replies: 56
Views: 56523

Re: test nzb before download

Yes, this is a patch to your script. It should apply cleanly to the download you have at http://www.appelboor.com/sander/nzb-checker-threaded.py I tested it on a few NZBs I had around and they all seemed to check out just fine. There is a slight delay after logging in with SSL mode compared to the n...
by phyber
February 10th, 2011, 9:17 am
Forum: General Help
Topic: test nzb before download
Replies: 56
Views: 56523

Re: test nzb before download

Here, have a small hack to make this support SSL connections. Works fine for me in the few tests I've done. YMMV. --- nzb-checker-threaded.py 2011-09-19 21:54:22.000000000 +0100 +++ ssl-checker.py 2011-02-10 14:13:36.000000000 +0000 @@ -1,3 +1,4 @@ +#!/usr/bin/python import Queue from threading impo...