How to use rutorrent: RSS plugin

simur612

Member
May 25, 2018
879
0
16
so to exclude more than one thing you need to use the /(word1|word2|word3)/i syntax?
for a single term i got /word.*/ to work, but i want to exclude more than one word for a rule.
for example. in a rss rule for xxx is use: /xxx.*/i
but i dont want 720, 1080, or dvdr to be grabbed. would the correct exclude syntax then be /(720|1080|dvdr).*/i ?
cheers
 

randac56

Member
May 25, 2018
915
0
16
1) Yes. And final fragment '.*' is superfluous in this case. /(720|1080|dvdr)/i
2) You may check your filter "on the fly". Press button with '?' sign.
 

lisas4567

Member
May 25, 2018
773
0
16
slight amendment on my last question.
i have 2 rules, dvd and xxx, both go into their separate folders. xxx > xxx & dvd > dvd
i dont want xxx to be downloaded into the dvd dir
so i set exclude /(xxx|jav)/ in my dvd rule, and /(720|1080|dvdr)/ in the xxx rule
now it wont download anything with xxx in it. if i remove the exclude xxx from the dvd rule,
it downloads anything with xxx into the dvd dir, and not the xxx dir.
where am i going wrong?
 

saroos1

Member
May 25, 2018
718
0
16
Guys I've had RSS set up and working for ages until recently where i switched to a new server that had ruTorrent 3.3 instead of 2.2 I copied my RSS files across but i always get the following sort of message when a rule is met.
[26.02.2012 22:20:26] Error loading torrent. (http://www.revolutiontt.net/download.php/258013/Top_Gear.18x05.720p_HDTV_x264-FoV.torrent?passkey=****************)

However if I right click and press load on that exact RSS feed it works and downloads it fine.

I have no idea why it has suddenly stopped working but I would appreciate some help as I am now loosing ratio rapidly due to having to manually grab the files.
 

simur612

Member
May 25, 2018
879
0
16

randac56

Member
May 25, 2018
915
0
16
I have just applied chmod 777 to public_html/rutorrent/share and all recursive directories, should that be enough to fix, or will I have messed something up?
 

lisas4567

Member
May 25, 2018
773
0
16
Hi all!

Love ruTorrent, and the RSS plugin is very very cool.

Just ran into an issue today and figured I would post my resolution in case anyone else had the same issue.

I was SSH'd into my server earlier today, as I didn't have access to my webUI, but wanted to adjust a few filters that weren't quite correct. I edited the filters file and didn't think anything of it until I got home, when I realized that my filters list in the webUI was blank!

The reason for this (I think), is that each section of this file is preceded by a variable type identifier and length of the segment (s:11:"/House.S*/i";s:7:"exclude"). After adjusting the s:# section to match the number of characters in the new regex, it's now working correctly.

Long story short; probably don't manually edit the filters file, but here is how to fix it if you do so wink.gif

Thanks for all the work on this project!
 

simur612

Member
May 25, 2018
879
0
16
Just wondering how I would set up an Auto download RSS filter for all episodes

Archer 2009 S03E08 720p HDTV x264-IMMERSE

New to this and not sure how to go about doing it. I have tried a few things to no avail.
 

randac56

Member
May 25, 2018
915
0
16
It seams that files are downloaded directly to the specified directory. Is there a way to use a temp catalog for unfinished downloads?
 

lisas4567

Member
May 25, 2018
773
0
16
hello, I wanna ask if these filter are ok or please tell me if there is something that I need to fix

to download all episodes of season 5 of Breaking Bad WEB-DL only

Code:
/Breaking.Bad.S05E*.720p.WEB-DL*/i
to download all episodes of season 8 of Weeds, that aren't release from IMMERSE group

Code:
/Weeds.S08E*.720p.HDTV.x264-UNiX*/i

/Weeds.S08E*.720p.HDTV.x264-EVOLVE*/i
are they fine? thanks
 

randac56

Member
May 25, 2018
915
0
16
I'm having trouble working the rss filtering out trying to match

The Big Bang Theory S06E04 The Re-Entry Minimization 1080p WEB-DL DD5 1 H 264

Trying with

/The\.Big\.Bang\.Theory\.S0[6-9]E0[1-40]\.1080p\\w+$/i

Any help on where I have gone wrong appreciated!
 

peshua19

Member
May 25, 2018
897
0
16
Gents,
What is wrong with below:

/^dexter.*(s)?(07|7)(e|x)?[5-12]+.*hdtv/i

Didn't download anything today when Dexter was released sad.gif hehe
 

saroos1

Member
May 25, 2018
718
0
16
Hi, widdle. This is a correct filter for season 7 of dexter:
Code:
/^dexter.*(s)?(07|7)(e|x)?[0-9]+.*hdtv/i[0-9] means combinations of numbers from 0 to 9 (any match from 00 to 99), not episode number from 0 to 9