Search found 11 matches

by Mills
May 20th, 2011, 9:09 pm
Forum: General Help
Topic: Strange issue with 0.6.0
Replies: 4
Views: 2091

Re: Strange issue with 0.6.0

Thanks Shy, I transferred about 10gb last night without disconnecting so perhaps it was just a coincidence with my ISP being at fault.

@Rasash: I think your issue is different than mine, for me LAN communication is fine and no local slowdown like you seem to be implying.


Cheers
by Mills
May 18th, 2011, 12:11 am
Forum: General Help
Topic: Strange issue with 0.6.0
Replies: 4
Views: 2091

Strange issue with 0.6.0

This is really strange. I am a fairly tech savvy user and I cannot explain this one. I'm also reluctant to post this in bug reports because it is hard to verify. Anyway, for whatever reason when SAB is downloading I occasionally lose internet communication and I have to reset my modem (not router) t...
by Mills
March 12th, 2010, 5:56 pm
Forum: Post-Processing Scripts
Topic: glftpd - post processing "site rescan"
Replies: 8
Views: 7094

Re: glftpd - post processing "site rescan"

Like I said, set a new variable first and use that: dir=`echo $1 | cut --characters 13-` then use $dir
by Mills
March 12th, 2010, 12:27 am
Forum: Post-Processing Scripts
Topic: glftpd - post processing "site rescan"
Replies: 8
Views: 7094

Re: glftpd - post processing "site rescan"

Ah I wasn't even thinking of using it to execute the ftp command, I use mirror to connect and upload (from hdd to hdd). But your way should work. $1 will have the full file path, you need the ftp path which will be without /glftpd/site, so $dir = `echo $1 | cut --characters 13-` ? Something like tha...
by Mills
March 11th, 2010, 7:35 pm
Forum: Post-Processing Scripts
Topic: glftpd - post processing "site rescan"
Replies: 8
Views: 7094

Re: glftpd - post processing "site rescan"

you can cut characters off of the beginning or end with 'cut' -- $dir = `echo $1 | cut --characters 6` or something similar.

lftp will upload the directory as though a FTP user were doing so, thus bypassing the need to run rescan manually. Check the man page.
by Mills
March 11th, 2010, 3:57 am
Forum: Post-Processing Scripts
Topic: glftpd - post processing "site rescan"
Replies: 8
Views: 7094

Re: glftpd - post processing "site rescan"

Just pseudo-code off the top of my head but: #!/bin/bash cd $1 for sfv in *.sfv; do   if [-f $sfv ]; then     /path/to/site/rescan/binary (whatever params it takes)   fi done -- Hopefully that helps -- I'm no bash guru. It will run twice if there are two sfvs though, so you probably want to incorpor...
by Mills
March 7th, 2010, 3:51 am
Forum: General Help
Topic: Powershell not exiting when called by SAB
Replies: 3
Views: 2986

Powershell not exiting when called by SAB

I use some postprocessing powershell scripts (called by a bat file), and when they are called by SABnzbd in postprocessing they never exit. If I grab the commandline being executed with process explorer, and paste it into cmd, it runs perfectly fine. The little output log added (thank you devs!) whe...
by Mills
August 25th, 2009, 8:47 pm
Forum: General Discussion
Topic: Help a NewB out
Replies: 2
Views: 2492

Re: Help a NewB out

It depends solely on your Usenet provider and your ISP. Opening ports allows you to find more peers increasing your download speed, but Usenet is a 1 to 1 connection; in other words, the data comes from your Usenet provider only, so only their speed to your computer is what matters. I'd run a downlo...
by Mills
August 19th, 2009, 8:21 pm
Forum: Post-Processing Scripts
Topic: [Bash] Auto create CDx/DVDx directories (for those who don't auto unrar)
Replies: 0
Views: 2449

[Bash] Auto create CDx/DVDx directories (for those who don't auto unrar)

I'm not really a bash scripter, I just adopted ideas from other's scripts (thanks SceneSort guy). If you can improve it, please feel free to post a better revision and I'll update the post. count=0 index=1 cd $1 for file in *.sfv; do        let count+=1 done if [ $count -gt 1 ]; then        for file...
by Mills
August 19th, 2009, 7:12 pm
Forum: Templates
Topic: Theme: smpl (Discussion)
Replies: 27
Views: 46103

Re: Theme: smpl (Discussion)

Thanks so much for this theme, so much better than the default. I wonder if the adding section that is currently present in the "Home" link could be added to the dualviews (at top or bottom) so I can leave one screen up at all times instead of having to switch between to add nzbs. Thanks a...
by Mills
August 19th, 2009, 7:04 pm
Forum: Feature Requests
Topic: PRE-processing script
Replies: 3
Views: 3817

Re: PRE-processing script

Second on preprocessing script please!

Thanks for all your hard work,

Mills