Web Wiz Forums Homepage
Forum Home Forum Home - General Discussion - ASP Discussion
  New Posts New Posts RSS Feed - Why Does my RSS Feed Max Out At 1000?
  FAQ FAQ  Forum Search   Calendar   Register Register  Login Login

Why Does my RSS Feed Max Out At 1000?

 Post Reply Post Reply Page  <123
Author
Message
MrTWS View Drop Down
Moderator Group
Moderator Group
Avatar

Joined: 08 July 2007
Location: United Kingdom
Status: Offline
Posts: 813
Points: 786
Post Options Post Options   Quote MrTWS Quote  Post ReplyReply Direct Link To This Post Posted: 27 October 2009 at 8:07pm
I don't know if this will help Kenny but I found this when searching the terms:

rss feeds limits

I'm only guessing
Web Design and Forum Modifications Undertaken
For more information visit
Just Check
Back to Top
dpyers View Drop Down
Senior Member
Senior Member
Avatar

Joined: 12 May 2003
Status: Offline
Posts: 3894
Points: 3890
Post Options Post Options   Quote dpyers Quote  Post ReplyReply Direct Link To This Post Posted: 27 October 2009 at 8:08pm
Most of the things I've seen itemizing the differences between rss versions were pretty technical and "jargonized".
RSS is (should be) backward compatible. I'd just try changing the version to 1.0 or 2.0.
IIRC, versions 0.93 and 0.94 were pulled after release. The version after 1.0 would be 2.0.

If you get the same results after changing the versions, I'd suspect bad XML

Back to Top
MrTWS View Drop Down
Moderator Group
Moderator Group
Avatar

Joined: 08 July 2007
Location: United Kingdom
Status: Offline
Posts: 813
Points: 786
Post Options Post Options   Quote MrTWS Quote  Post ReplyReply Direct Link To This Post Posted: 27 October 2009 at 8:10pm
And this link may help as well
Web Design and Forum Modifications Undertaken
For more information visit
Just Check
Back to Top
kennywhite View Drop Down
Groupie
Groupie


Joined: 26 February 2009
Location: Indy
Status: Offline
Posts: 42
Points: 57
Post Options Post Options   Quote kennywhite Quote  Post ReplyReply Direct Link To This Post Posted: 28 October 2009 at 4:02pm
I tried a few tips from the links that you MrTWS. I had no luck there.
 
I also tried changing the version numbers. I removed the tag linking the XML stylesheet and I was able to display all of the database records, but they are really sloppy and the neat little search box on the side is missing.
 
I think that issolates the problem to the XML, but I'm only 99.9% on that.
 
We only use IE here at work (corporate policy), so I had never tried it on Chrome or Mozilla, but today I decided to give it a shot (with the XML file re-linked, of course) and they will both display every database record, but I don't have the search box. The ability to search the entries is what makes it important in the first place.
 
With these new facts, I'm going to see what my brain can come up with, hopefully one of you will find a light bulb over your head that you can lend me.
 
This does have to work in IE, though.
Back to Top
kennywhite View Drop Down
Groupie
Groupie


Joined: 26 February 2009
Location: Indy
Status: Offline
Posts: 42
Points: 57
Post Options Post Options   Quote kennywhite Quote  Post ReplyReply Direct Link To This Post Posted: 10 November 2009 at 3:39pm
So... I think the limitation is with XML. I created this generic RSS page, with the data manually entered in and saved it as an asp, php and html page. No matter what, it would never go over 1000.
 
[code]
<?xml version="1.0"?>
<note>
<from>Jani</from>
<to>Tove</to>
<message>Norwegian: æøå. French: êèé</message>
</note>
The file above, note_encode_none_u.xml will NOT generate an error. But if you specify a single-byte encoding it will.
The following encoding (open it), will give an error message:
<?xml version="1.0" encoding="windows-1252"?>
The following encoding (open it), will give an error message:
<?xml version="1.0" encoding="ISO-8859-1"?>
The following encoding (open it), will give an error message:
<?xml version="1.0" encoding="UTF-8"?>
The following encoding (open it), will NOT give an error:
<?xml version="1.0" encoding="UTF-16"?>
 
[\code]
Back to Top
kennywhite View Drop Down
Groupie
Groupie


Joined: 26 February 2009
Location: Indy
Status: Offline
Posts: 42
Points: 57
Post Options Post Options   Quote kennywhite Quote  Post ReplyReply Direct Link To This Post Posted: 10 November 2009 at 3:42pm
Pasted the wrong thing. Sorry..
 
Here is the code. :)
 

<?xml version="1.0"?>
<rss version="2.0">
<channel>
 
<title>The title of my RSS 2.0 Feed</title>
<link>http://www.example.com/</link>
<description>This is my rss 2 feed description</description>
<lastBuildDate>Mon, 12 Sep 2005 18:37:00 GMT</lastBuildDate>
<language>en-us</language>
 
<item>
<title>Title of an item</title>
<link>http://example.com/item/123</link>
<guid>http://example.com/item/123</guid>
<pubDate>Mon, 12 Sep 2005 18:37:00 GMT</pubDate>
<description>[CDATA[ This is the description. ]]</description>
</item>
 

<item>
<title>Title of an item</title>
<link>http://example.com/item/123</link>
<guid>http://example.com/item/123</guid>
<pubDate>Mon, 12 Sep 2005 18:37:00 GMT</pubDate>
<description>[CDATA[ This is the description. ]]</description>
</item>
<item>
<title>Title of an item</title>
<link>http://example.com/item/123</link>
<guid>http://example.com/item/123</guid>
<pubDate>Mon, 12 Sep 2005 18:37:00
GMT</pubDate>
<description>[CDATA[ This is the description. ]]</description>
</item>
 

<item>
<title>Title of an item</title>
<link>http://example.com/item/123</link>
<guid>http://example.com/item/123</guid>
<pubDate>Mon, 12 Sep 2005 18:37:00 GMT</pubDate>
<description>[CDATA[ This
is the description. ]]</description>
</item>"
 
 

</channel>
</rss>
 

 
 
 
 
 

 
 
Back to Top
 Post Reply Post Reply Page  <123

Forum Jump Forum Permissions View Drop Down

Bulletin Board Software by Web Wiz Forums® version 10 alpha build 20092001
Copyright ©2001-2009 Web Wiz

This page was generated in 0.133 seconds.