RSS don't start downloading

peshua19

Member
May 25, 2018
897
0
16
Hello Guys,

I wanted to autodownload every feed on a RSS link, So I added my RSS feed and setup a rule on the RSS manager but nothing start downloading :-(

I just add a new rules without filter (cause I want to download each feed on the RSS).

rssman01.png

2) Blank
3) Blank
4) Unchecked (both of them)
5) Blank
6) Match Always
7) Blank
cool.gif No ratio
9) No Channel
10) Unchecked (both of them)

And I finally clicked on the "Add" buttom.

I can see all my feed on the feed list, but no one of them start downloading :/

Any idea ?
 

peshua19

Member
May 25, 2018
897
0
16
I deleted the old one and created a new one.
I clicked on "Add" in first but its still the same :/ No download start
 

lisas4567

Member
May 25, 2018
773
0
16
Yet once. You *create* your filter when you press Add button. And only after that you can configure filter's parameters.
 

saroos1

Member
May 25, 2018
718
0
16
I use this reggex:

Code:
/.*/i
and it works fine.

Explanation:
/ -> start/end of the regex
. -> (nearly) all characters
* -> zero to endless repetition of the sign before (here ".")
i -> case insensitiv (here useless)

Only a suggestion, but why should a empty regex match all?
 

peshua19

Member
May 25, 2018
897
0
16
I use this reggex:

Code:
/.*/i
and it works fine.

Explanation:
/ -> start/end of the regex
. -> (nearly) all characters
* -> zero to endless repetition of the sign before (here ".")
i -> case insensitiv (here useless)

Only a suggestion, but why should a empty regex match all?
Its working now! Thank you :)
 

peshua19

Member
May 25, 2018
897
0
16
Hey guys,

I'm back with the same problem. I'm on a fresh install (nginx/phpfpm) and my rules didn't work.

I want to download everything on the RSS feed so I use this regex : /.*/i

But nothing start downloading ...

Any idea ?