Search found 19 matches

by jowi
May 5th, 2014, 10:26 am
Forum: Nederlands
Topic: Password in 0.7.17 anders? / en + ?
Replies: 2
Views: 1607

Re: Password in 0.7.17 anders? / en + ?

Voorheen kon je het password achter de naam zetten in sabnzbd zelf, door op de queue naam te klikken en de naam aan te passen.
Ik zie nu inderdaad dat er een extra password box is, als je op de queue klikt. als ik het daar in zet, werkt alles weer.
by jowi
May 4th, 2014, 1:45 pm
Forum: Nederlands
Topic: Password in 0.7.17 anders? / en + ?
Replies: 2
Views: 1607

Password in 0.7.17 anders? / en + ?

Ik heb sinds kort 0.7.17 geinstalleerd, en nu valt me op dat als ik een password toevoeg dmv het toevoegen van "/" achter de naam met het password, dat zodra ik het gesaved heb, de '/' is veranderd in een '+'... is dat goed? Ik had dat met de vorige versie niet. Dus: 'dinges123/p@ssw0rd' w...
by jowi
September 30th, 2012, 7:35 am
Forum: Post-Processing Scripts
Topic: Series sorting & post processing
Replies: 3
Views: 2785

Re: Series sorting & post processing

As always, support on this site is overwhelming... i wonder why i even bother asking here...
by jowi
September 29th, 2012, 10:28 am
Forum: Post-Processing Scripts
Topic: Series sorting & post processing
Replies: 3
Views: 2785

Re: Series sorting & post processing

Ok, looks like i solved it. Sabnzb takes the seriesname from the nzb sickbeard (or others) supply. So in this case, the name with lowercase parts. I've solved it by using a pre script, which finds the seriesname in an nzb, and converts it to words with uppercase before sabnzb gets its hands on it :)...
by jowi
September 29th, 2012, 5:11 am
Forum: Post-Processing Scripts
Topic: Series sorting & post processing
Replies: 3
Views: 2785

Series sorting & post processing

On my linux nas i have a tv series folder for Two And A Half Men, /mnt/user/tv series/ Two And A Half Men /Season x/[episodes here]. I'm using sickbeard, and i've added this folder to sickbeard 'add existing show', so it points to /mnt/user/tv series/ Two And A Half Men . So far so good. If sickbear...
by jowi
August 16th, 2012, 4:54 am
Forum: Post-Processing Scripts
Topic: Pre processing trouble
Replies: 27
Views: 21556

Re: Pre processing trouble

I guess those parameters, though specified, arent used at all... ?
Also no solution from the sickbeard community. Too bad.
by jowi
August 12th, 2012, 4:42 am
Forum: Post-Processing Scripts
Topic: Pre processing trouble
Replies: 27
Views: 21556

Re: Pre processing trouble

FYI, i've posted this question about the missing parameters on sickbeard's forum as well.
by jowi
August 11th, 2012, 5:49 am
Forum: Post-Processing Scripts
Topic: Pre processing trouble
Replies: 27
Views: 21556

Re: Pre processing trouble

Ok, this works, but... it looks like sickbeard does not send all the parameters, or it is not parsed to the pre-queue script by sabnzb. I'm interested in the show, season & episode for my pre-queue process. Is this maybe some setting in sickbeard or sab i've overlooked? If you take a look at the...
by jowi
August 11th, 2012, 5:02 am
Forum: Post-Processing Scripts
Topic: Pre processing trouble
Replies: 27
Views: 21556

Re: Pre processing trouble

The difference is perhaps that the postprocessing script is being parsed to an interpreter to be processed, and the preprocessing to a (internal?) shell which output is processed? Because the output should be ok, it's the source that probably can't be processed due to the ^M's. Which is still strang...
by jowi
August 11th, 2012, 2:27 am
Forum: Post-Processing Scripts
Topic: Pre processing trouble
Replies: 27
Views: 21556

Re: Help With Categories

You are using DOS/windows format files. Shells don't like that. Convert your script with dos2unix. Those ^M characters are the culprits! That would mean sabnzb treats pre processing scripts different from post processing scripts? Because i've created both the same way, using a Python plugin in Visu...
by jowi
August 10th, 2012, 4:49 pm
Forum: Post-Processing Scripts
Topic: Pre processing trouble
Replies: 27
Views: 21556

Re: Pre processing trouble

NoTolerance wrote:Carriage returns maybe?
Run 'cat -vE pre.py' and look for '\r' in the output.
Nope...

Code: Select all

#!/usr/bin/env python^M$
import sys^M$
print "0"^M$
exit(0)^M$
shypike wrote:BTW: do you also use post-processing scripts and do they work?
Yep... wrote them myself as well.
by jowi
August 10th, 2012, 3:32 pm
Forum: Post-Processing Scripts
Topic: Pre processing trouble
Replies: 27
Views: 21556

Re: Pre processing trouble

Anyone who knows what i'm doing wrong here?
Any tips or ideas? I'm running Sab 0.7.2 on an unRAID v5.0 server.
by jowi
August 10th, 2012, 2:52 am
Forum: Post-Processing Scripts
Topic: Running PWS scripts
Replies: 4
Views: 3211

Re: Running PWS scripts

Go to sab's config, create a category and enter the post processing script you want to be executed there.
(or use the default item so the script is executed for all downloads)
Image
by jowi
August 9th, 2012, 4:46 pm
Forum: Post-Processing Scripts
Topic: Pre processing trouble
Replies: 27
Views: 21556

Re: Pre processing trouble

Yes it does.
by jowi
August 9th, 2012, 1:24 pm
Forum: Post-Processing Scripts
Topic: Pre processing trouble
Replies: 27
Views: 21556

Re: Pre processing trouble

Will try to. I'm new at linux.
But the bash script does run from the command line...

*edit*

Code: Select all

root@Tower:/bin# ls -l sh
lrwxrwxrwx 1 root root 4 2012-06-21 00:54 sh -> bash
looks ok to me?