i get a 404 error dialog when running the imdb script
also the url field always shows: http://us.imdb.com/title/tt
it calls GetPage(Address); where address is always empty
maybe the site has changed?
grz
imdb script is bugging
Re: imdb script is bugging
MovieNumber := TextBetween(PageText, '<input type="hidden" name="arg" value="', '"><input');
returns an empty string
maybe use this one instead
<input type="hidden" name="auto" value="
grz
returns an empty string
maybe use this one instead
<input type="hidden" name="auto" value="
grz
Movie Number
I found that for the trivia and awards portion of the script to run correctly you also nee to add a / otherwise the movie number has a slash on the end of it and the other pages give you 404 errors.
MovieNumber := TextBetween(PageText, '<input type="hidden" name="auto" value="legacy/title/tt', '/"><input');
MovieNumber := TextBetween(PageText, '<input type="hidden" name="auto" value="legacy/title/tt', '/"><input');
Yes, this was already corrected in the script that I published yesterday on the other IMDB topic:
viewtopic.php?p=11494#11494
So I'll close this one, it's better to continue the discussion on the other one
viewtopic.php?p=11494#11494
So I'll close this one, it's better to continue the discussion on the other one
