Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - atrealis

Pages: [1]
1
Bugs / ddos-guard and rss feeds
« on: January 27, 2020, 06:41:15 pm »
Just to report that since start of year, rss feeds are down due to DDOS-Guard challenge.
You can see what rss readers see on this page: http://www.feedvalidator.org/check.cgi?url=https%3A%2F%2Fanidex.info%2Frss%2F%3Fcat%3D0

2
Bugs / some HTML minor bugs
« on: May 26, 2018, 11:40:14 am »
  • On headers, content of meta description should be inside quotation marks
from
Code: (html) [Select]
<meta name="description" content=A torrent tracker specialising in content from East Asia, including anime, manga, music, adult videos and more.>to
Code: (html) [Select]
<meta name="description" content="A torrent tracker specialising in content from East Asia, including anime, manga, music, adult videos and more.">
  • On searching results (and since the website support it), RSS button link should include search query in it's content
Code: [Select]
https://anidex.info/rss/?cat=somecat&q=somesearch
Code: (php) [Select]
echo '/rss/?'.if(isset($_GET['cat'])){echo 'cat='.$_GET['cat'];}.'&'.if(isset($_GET['q'])){echo 'q='.$_GET['q'];};
  • As a side note
You forgot to close the <div class="container"> on your hologfx website.

3
Suggestions / RSS feeds should include a link to torrent page
« on: May 26, 2018, 11:27:57 am »
Suggestion: Each RSS feed items should include a link to torrent page.

edit: eg:
Code: (RSS) [Select]
<item>
<category>{category}</category>
<title>{torrent title}</title>
<link>{torrent link}</link>
<description><![CDATA[Category: {category} | Labels: {labels} | Size: {size} | Download: {torrent link} {magnet link}<hr /><br />{link to torrent page}<br />{torrent description}]]></description>
<pubDate>{publication date}</pubDate>
<guid><![CDATA[{torrent link}]]></guid>
</item>

Pages: [1]