Search found 5 matches

by JonM
05 Jan 2020, 09:58
Forum: Extension scripts
Topic: Unrar .rar files in .rar archives
Replies: 32
Views: 147316

Re: Unrar .rar files in .rar archives

I had this issue...

Remove " - python %s' % sys.version_info" from line 79 and you should be fine.

Cheers,
Jon
by JonM
26 Apr 2019, 17:51
Forum: Extension scripts
Topic: Unrar .rar files in .rar archives
Replies: 32
Views: 147316

Re: Unrar .rar files in .rar archives

no worries my dude.... If you're using categories you'll need to set the script in the categories settings too, could be worth a check? As a side note, I've actually disabled this script now. I found that the number of downloads that failed because of nested .rar files without the script was actuall...
by JonM
25 Apr 2018, 11:44
Forum: Extension scripts
Topic: Unrar .rar files in .rar archives
Replies: 32
Views: 147316

Re: Unrar .rar files in .rar archives

I fixed it... I replaced if os.environ['NZBPP_PARSTATUS'] == '1': print "Par-check failed, setting status \"failed\"" status = 1 # Check unpack status if os.environ['NZBPP_UNPACKSTATUS'] != '2': print "Unpack failed, setting status \"failed\"" status = 1 With... if os.environ['NZBPP_TOTALSTATUS'] !=...
by JonM
25 Apr 2018, 11:28
Forum: Extension scripts
Topic: Unrar .rar files in .rar archives
Replies: 32
Views: 147316

Re: Unrar .rar files in .rar archives

I had indeed... How silly. editing with notepad++ seems to have fixed it. Doh. But, I have a new issue... Files that don't have any nested rar files are now all failing with; ExtendedUnrar: Unpack failed, setting status "failed" files which have the nested rars are working exactly as they should. Is...
by JonM
25 Apr 2018, 09:53
Forum: Extension scripts
Topic: Unrar .rar files in .rar archives
Replies: 32
Views: 147316

Re: Unrar .rar files in .rar archives

I'm having a real hard time getting this script to work in a freenas jail. I think its the shebang line causing issues. If I use; #!/usr/bin/env python I get "ExtendedUnrar: env: python : No such file or directory" That command works fine in the console though! So I've tried; #!/usr/bin/local/python...