The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
problem with rss
hello
what can I do to get my rssposter.php working with biggest rss files? thank you Manuel |
#2
|
|||
|
|||
We might need more information - what problem are you having exactly? And it sounds like you believe it has to do with the size of the feed?
|
#3
|
|||
|
|||
when I try to setup a new rss feed I get this error:
XML Error: Invalid document end at line 10612 when I try with a smaller one I get no errors (this one is about 4MB) thank you |
#4
|
|||
|
|||
hello
any idea? thanks |
#5
|
|||
|
|||
Hmm...are you sure it's the size and not that the document is actually bad? If this is a feed you're getting from another site, can you post the url?
|
#6
|
|||
|
|||
this is the result using the W3C Validator
http://validator.w3.org/appc/check.c...D146%26ref%3D4 the file is largest then 2MB, maybe rssposter is also limited to 2MB? thank you |
#7
|
|||
|
|||
I've looked at the code and didn't see anything obvious that would limit it to 2M. There is a php setting "upload_max_filesize" that seems to have a default of 2M, but since this isn't an uploaded file I don't see why it would apply. But it's probably worth trying to increase it and see what happens.
Another thought is that in the file includes/class_css_parser.php there's a function at the top, fetch_file_via_socket() that gets the data. It looks like it tries to use curl functions if available, and if not it uses a socket. You might try editing it and chaging the line: Code:
if (function_exists('curl_init') AND $ch = curl_init()) to Code:
if (0 AND function_exists('curl_init') AND $ch = curl_init()) to force it to use a socket instead of curl. But that's just a stab in the dark. |
#8
|
|||
|
|||
ok thank you
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|