I info2862 New Member YetiShare User Aug 9, 2013 43 0 0 Aug 25, 2013 #1 Would be nice to have RSS feeds so that one can submit to Google Webmaster.
Y ysmods New Member Jan 29, 2013 860 1 0 UK www.ysmods.com Aug 25, 2013 #2 Have a look here: http://www.yetisharemods.com/topic/160-rss-feed-to-show-the-latest-50-files/ And here: http://www.yetisharemods.com/topic/170-users-own-rss-feed/
Have a look here: http://www.yetisharemods.com/topic/160-rss-feed-to-show-the-latest-50-files/ And here: http://www.yetisharemods.com/topic/170-users-own-rss-feed/
I info2862 New Member YetiShare User Aug 9, 2013 43 0 0 Aug 26, 2013 #3 Thanks, but I'd like to have a feed with all active unprotected files so that I can submit all the URLS to Google Webmaster.
Thanks, but I'd like to have a feed with all active unprotected files so that I can submit all the URLS to Google Webmaster.
Y ysmods New Member Jan 29, 2013 860 1 0 UK www.ysmods.com Aug 26, 2013 #4 Easily done by changing the MySQL query in rss.php Find on line 24: Code: $row = $db->getRows("SELECT * FROM file WHERE statusId = '1' ORDER BY id DESC LIMIT 0,$files"); Replace with: Code: $row = $db->getRows("SELECT * FROM file WHERE statusId = '1' AND accessPassword IS NULL ORDER BY id DESC");
Easily done by changing the MySQL query in rss.php Find on line 24: Code: $row = $db->getRows("SELECT * FROM file WHERE statusId = '1' ORDER BY id DESC LIMIT 0,$files"); Replace with: Code: $row = $db->getRows("SELECT * FROM file WHERE statusId = '1' AND accessPassword IS NULL ORDER BY id DESC");
I info2862 New Member YetiShare User Aug 9, 2013 43 0 0 Sep 13, 2013 #6 The script isn't working when you use download servers. It doesn't assign the proper file server, but only the main URL. As a result all URLs point to the wrong subdomains.
The script isn't working when you use download servers. It doesn't assign the proper file server, but only the main URL. As a result all URLs point to the wrong subdomains.
I info2862 New Member YetiShare User Aug 9, 2013 43 0 0 Sep 13, 2013 #7 Also, let's say you have 10,000 files - isn't the current format of the feed inefficient as it just creates a long list?
Also, let's say you have 10,000 files - isn't the current format of the feed inefficient as it just creates a long list?
Y ysmods New Member Jan 29, 2013 860 1 0 UK www.ysmods.com Sep 17, 2013 #9 As I don`t have an external file server to test it on I can't see where the problem is