- March 10, 2006
- 4,434
- 1,897
- Moderator
- #71
There's a problem with certain older common named movies where the search returns many movies and the current movie is outside the top 10. Example: Speed. For some reason it seems that the scraper script only reads the first 10 movies even if there's many more returned on the search page. I don't know where this limitation comes from but even if I do find out there's still the problem in this case that the movie isn't even found on the first page so the script needs to also search the other pages. The search list is sorted by year and Speed is from 1994.
The limit of 10 comes from the <loop>'s default values.
For IMDb+ I modify that to 99-results to improve matching, which is probably maximum value scraper engine supports.
Modify your line #81 to:
Code:
<loop name="search_results_verified" on="search_results_block" limit="99">
And that should fix it.