![]() |
Why Does my RSS Feed Max Out At 1000? |
Post Reply
|
Page <123 |
| Author | |
MrTWS
Moderator Group
Joined: 08 July 2007 Location: United Kingdom Status: Offline Posts: 813 Points: 786 |
Post Options
Quote Reply
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 |
|
![]() |
|
dpyers
Senior Member
Joined: 12 May 2003 Status: Offline Posts: 3894 Points: 3890 |
Post Options
Quote Reply
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 |
|
|
|
![]() |
|
MrTWS
Moderator Group
Joined: 08 July 2007 Location: United Kingdom Status: Offline Posts: 813 Points: 786 |
Post Options
Quote Reply
Posted: 27 October 2009 at 8:10pm |
|
And this link may help as well
|
|
![]() |
|
kennywhite
Groupie
Joined: 26 February 2009 Location: Indy Status: Offline Posts: 42 Points: 57 |
Post Options
Quote Reply
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.
|
|
![]() |
|
kennywhite
Groupie
Joined: 26 February 2009 Location: Indy Status: Offline Posts: 42 Points: 57 |
Post Options
Quote Reply
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]
|
|
![]() |
|
kennywhite
Groupie
Joined: 26 February 2009 Location: Indy Status: Offline Posts: 42 Points: 57 |
Post Options
Quote Reply
Posted: 10 November 2009 at 3:42pm |
|
Pasted the wrong thing. Sorry..
Here is the code. :)
|
|
![]() |
|
Post Reply
|
Page <123 |
| Forum Jump | Forum Permissions ![]() You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |