lazy-lightning / torrentwatch

Automatically exported from code.google.com/p/torrentwatch
GNU General Public License v2.0
1 stars 0 forks source link

RSS2 support #30

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
For example this
http://kat.ph/new/rss/

or for TV shows, this one:
http://kat.ph/tv/?rss=1 (it's not RSS1 even the URL seems to say so)

It will be very appreciated.

Thanks for your work!!

Original issue reported on code.google.com by daniel....@gmail.com on 9 Mar 2013 at 12:22

GoogleCodeExporter commented 9 years ago
It already has RSS2 support.

For example, the default feed: http://ezrss.it/feed/ is RRS2.

Kat.ph's is likely malformed and not being processed properly. It seems to be 
an issue with the RSS add-on (LastRSS) as the cache file basically has no 
contents.

Original comment by jus...@mcintegrator.com on 30 May 2013 at 8:53

GoogleCodeExporter commented 9 years ago
It looks like it's because LastRSS doesn't have encoding enabled.

Open lastRSS.php, search for "get_curl_defaults($getOptions);"

Insert this above: $getOptions[CURLOPT_ENCODING] = true;

Final output should look like:

$getOptions[CURLOPT_ENCODING] = true;
get_curl_defaults($getOptions);

Then delete the cache file and it should update on the next refresh.

Original comment by jus...@mcintegrator.com on 30 May 2013 at 9:19

GoogleCodeExporter commented 9 years ago
It's not working. Still unavailable...

I've modified lastRSS.php, added that line, cleared cache, restarted 
torrentwatch, added feeds, restarted again...

Both unavailable :s

Original comment by daniel....@gmail.com on 2 Jun 2013 at 11:49