[unable to retrieve full-text content]

Asked by dat

For some articles the code returns [unable to retrieve full-text content] plus 1 or 2 lines that it was able to extract from the feed.
For version 2.5 I turned on the option to exclude such returns but it didnt work. Is it because of the 1 or 2 lines that it was able to extract? What should I do to exclude the whole thing?

Question information

Language:
English Edit question
Status:
Solved
For:
Five Filters Edit question
Assignee:
No assignee Edit question
Solved by:
Keyvan
Solved:
Last query:
Last reply:
Revision history for this message
Keyvan (keyvan) said :
#1

Please email me an example with URL so I can take a look. If you enable the option to exclude failed extractions, you should not be seeing those messages.

Revision history for this message
dat (nguyenhdat) said :
#2

Try this link
http://vnexpress.net/gl/xa-hoi/2011/02/3ba26155/
I set the option to exclude failed extraction but it still doesnt work.

Revision history for this message
Best Keyvan (keyvan) said :
#3

Thanks for the report. That's a bug in the code. If you email <email address hidden>, we'll send you an updated copy. It will be fixed in the next version.

If you want to do it yourself, edit line 313 of makefulltextfeed.php (version 2.5) and remove the check for valid key. So

 $exclude_on_fail = ($valid_key && isset($_GET['exc']) && ($_GET['exc'] == '1'));

becomes

 $exclude_on_fail = (isset($_GET['exc']) && ($_GET['exc'] == '1'));

Revision history for this message
dat (nguyenhdat) said :
#4

Thanks Keyvan, that solved my question.