I once had the same problem, but i just had to disable NIS to get data from moviemeter.
Now i added it to the allowed sites in NIS and it works like a charm.
I assume you're using the latest version of AMC. Its weird nonetheless.

Code: Select all
Line := TextBetween(PageText, '<p>Alternatieve titel: ', '<br />');
Code: Select all
Line := TextBetween(PageText, '<p>Alternatieve titels: ', '<br />');
Sure:antp wrote:You can give an example of movie of each? So I can quickly correct the script without search for movies with alternative title(s)
Code: Select all
// translated title
Line := TextBetween(PageText, '<p>Alternatieve titel', '<br />');
if Line <> '' then
begin
Line := TextAfter(Line, ': ');
if Line <> '' then
begin
HTMLDecode(Line);
SetField(fieldTranslatedTitle, Line);
end;
end;
This was a reply to the question from TeeBee Posted: 2005-06-04 17:10:19.antp wrote:For me the script included with AMC still works... for which movie do you have this problem?
I get the same error in category too.TeeBee wrote:When i try this one i dont get any info, and this is what is in the category field:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
<html> ect. ect.
Code: Select all
Line := Page.GetString(Page.Count-1);
Code: Select all
Line := Page.GetString(Page.Count-2);
I never said that this script was working, I just said that it was the latest one that existed, to reply to your question:alteba wrote:The archivepackage contained version 2.4
After copiing the new moviemeter.ifs to the scripts folder in the orginal installation folder, the problem still exists.![]()
![]()
But now as lpquartel suggested a change for the script, you will be able to fix it. I'll also put it on my server (/temp/scripts) as there is something new...Could you please post the new script again?
Maybe you could build a setup that can download all the content of the FTP directory : in order to integrate a kind of an auto-update option in the setup.antp wrote:not for just one scriptalteba wrote: tip: update the setup...