Post reply

Warning: this topic has not been posted in for at least 120 days.
Unless you're sure you want to reply, please consider starting a new topic.

Note: this post will not display until it's been approved by a moderator.

Name:
Email:
Subject:
Message icon:

Attach:
(Clear Attachment)
(more attachments)
Allowed file types: gif, jpg, png, txt, tpl, lng, ini, pvd, psf, ini, cfg, csv, zip, xml, pas, 7z
Restrictions: 4 per post, maximum total size 1024KB, maximum individual size 1024KB
Note that any files attached will not be displayed until approved by a moderator.
Verification:
Type the letters shown in the picture
Listen to the letters / Request another image

Type the letters shown in the picture:
How many words are in this question?:

shortcuts: hit alt+s to submit/post or alt+p to preview


Topic Summary

Posted by: rick.ca
« on: February 13, 2013, 11:52:36 am »

Quote
But my principal problem is that I can't import data from imdb. I click on the button on the top, and, usually, informations take place but since I've got the new version, nothing works.

Check that your IMDb plugin is up-to-date. Select (for program version 1.0.2.x, from the menu button on the title bar) Help > Check for updates. The latest plugin version is 0.9.8.12.
Posted by: Rickylef
« on: February 10, 2013, 12:18:39 pm »

Hi everybody!

I've got some problems and first of all is that I'm french, so I can speak a little bit of english and I hope i can explain clearly  and understand your eventual answers... So i'm not a master es computer and somme specific terms can be hard for me to understand.

But my principal problem is that I can't import data from imdb. I click on the button on the top, and, usually, informations take place but since I've got the new version, nothing works. I think it's because of a wrong tense in my URL windows on the search web page. Some informations are writen in red, but i can't write correctly the right tense.

Can somebody help me, please?

Sorry for my horrible english...

Friendly

Ricky
Posted by: bmsmcr
« on: January 30, 2013, 08:25:51 am »

I have PVD v0.9.9.21 with the latest IMDB plug-in.  Yesterday 130129 the movie info stopped working.  The program reaches IMDB and reads some data but doesn't update the movie info.  I downloaded all updates, checked that I had the latest IMDB plug-in, and even did a clean install of the program trying to get it to work. I rebooted the machine to no avail.  I even tried my laptop which hasn't had a java update or the latest IMDB plug-in.  The program was working perfectly on Monday and failed on Tuesday and is still unable to get the IMDB info.  I feel that IMDB has changed something which is not allowing access.  I am using Windows 7 and I checked to make sure PVD is allowed through the firewall.  I am at a loss.  Please help.

I am having the same problem as stated above and have taken the same steps in hopes to fix it. Any assistance would be greatly appreciated!
Posted by: davfarm
« on: January 30, 2013, 08:24:13 am »

I have PVD v0.9.9.21 with the latest IMDB plug-in.  Yesterday 130129 the movie info stopped working.  The program reaches IMDB and reads some data but doesn't update the movie info.  I downloaded all updates, checked that I had the latest IMDB plug-in, and even did a clean install of the program trying to get it to work. I rebooted the machine to no avail.  I even tried my laptop which hasn't had a java update or the latest IMDB plug-in.  The program was working perfectly on Monday and failed on Tuesday and is still unable to get the IMDB info.  I feel that IMDB has changed something which is not allowing access.  I am using Windows 7 and I checked to make sure PVD is allowed through the firewall.  I am at a loss.  Please help.
Posted by: Ivek23
« on: January 30, 2013, 08:05:14 am »

imdb script is not working again. When I tried to fetch a movie, nothing is fetched beside the imdb link.

sorry...false alarm..it works after i restarted my pc

All right, you alerted me to the error.

Probably use the stable version 0.9.9.21 the which unfortunately I have not tested earlier versions of the script. I tested the beta version 1.0.23 is where these problems do not appear.  The problem is the url address in the search results.
Now it is corrected and hopefully it will not be more problems.

I fixed search results with the url.

Imdb Movie script
v 0.1.0.4
Imdb Movie(1) script
v 0.1.0.3

Scripts is attached here.

The Appendix to the post:
« Reply #40 on: 27 January 2013, 10:07:48 »


This is corrected code for Search results:
Code: [Select]
procedure ParseSearchResults(HTML : String);
var
curPos, endPos : Integer;
Title, Title1, Year, URL, Preview, Preview1 : String;
begin
curPos := Pos('<table class="findList">', HTML);
if curPos < 1 then
Exit;

LogMessage('Parsing search results...');

curPos  := PosFrom('<img src="', HTML, curPos)+10;
endPos  := PosFrom('.jpg" height="44" width="32" /></a>', HTML, curPos);
Preview := Trim(Copy(HTML, curPos, endPos - curPos));
curPos := PosFrom('<a href="/title/', HTML, curPos);
while curPos > 0 do begin
endPos := PosFrom('?ref_=fn_tt_tt_', HTML, curPos);
URL := Trim(Copy(HTML, curPos+9, endPos - curPos-9));
URL := BASE_URL + URL;
curPos := PosFrom('>', HTML, curPos)+1;
endPos := PosFrom('</td> </tr>', HTML, curPos);
Title := RemoveTags(Trim(Copy(HTML, curPos, endPos - curPos)), false);
Title   := StringReplace(Title, '-', #13, true, false, true); 
curPos  := PosFrom('<img src="', HTML, curPos)+10;
endPos  := PosFrom('.jpg" height="44" width="32" /></a>', HTML, curPos);
Preview := Trim(Copy(HTML, curPos, endPos - curPos));
AddSearchResult(Title, '', '', URL, '');
curPos := PosFrom('<a href="/title/', HTML, curPos);
 end;
end;

function NextMode(curMode : Integer) : Integer;
Posted by: abubin
« on: January 29, 2013, 07:38:31 pm »

i am sorry..i am using 1.0.2.3 and I think I screw up my imdb plugins. Please read about this in another thread I posted. Cause my problem doesn't fit this thread...

http://www.videodb.info/forum_en/index.php/topic,3281.0.html

Posted by: Ivek23
« on: January 27, 2013, 10:07:48 am »

imdb script is not working again. When I tried to fetch a movie, nothing is fetched beside the imdb link.

sorry...false alarm..it works after i restarted my pc

All right, you alerted me to the error.

Probably use the stable version 0.9.9.21 the which unfortunately I have not tested earlier versions of the script. I tested the beta version 1.0.23 is where these problems do not appear.  The problem is the url address in the search results.
Now it is corrected and hopefully it will not be more problems.

I fixed search results with the url.

Imdb Movie script
v 0.1.0.4
Imdb Movie(1) script
v 0.1.0.3

Scripts is attached here.
Posted by: abubin
« on: January 26, 2013, 07:29:26 pm »

imdb script is not working again. When I tried to fetch a movie, nothing is fetched beside the imdb link.

sorry...false alarm..it works after i restarted my pc
Posted by: Ivek23
« on: January 20, 2013, 05:10:55 pm »

I fixed search results.

Imdb Movie script
v 0.1.0.3
Imdb Movie(1) script
v 0.1.0.2

Scripts is attached here.
Posted by: Ivek23
« on: December 14, 2012, 07:06:40 am »

Ehm, sorry, you want to have plugin source or what?

No, I did not have in mind at this.  I had in mind Imdb Movie script.
Posted by: nostra
« on: December 13, 2012, 09:02:56 pm »

Ehm, sorry, you want to have plugin source or what?
Posted by: Ivek23
« on: December 13, 2012, 04:17:37 pm »

Perhaps it would not be these problems, if I had a script The new url address for search results and also small correction in code for Search results section.
Posted by: Ivek23
« on: December 12, 2012, 07:57:15 pm »

Posted by: Ivek23
« on: December 11, 2012, 07:57:12 am »

allow me a stupid question ... why does the changed imdb script have the suffix .psf?
it's the one and only pvd file with this ending if Im not mistaked.
did I miss something?

Perhaps because this is very strange.

Hmm ...
Yeah, it's probably here twice suffix ".psf", so one that is visible and that which is invisible (like this ".psf.psf").  In the "Folder Options" is "View" folder, where is the "Hide extensions for known file types". To confirm and save. Now you will see the suffix ".psf". If the imdb script two ".psf" suffix, leave one. "psf" suffix, another extension(suffix) is delete(removed) and then all will be fine.
Posted by: Ivek23
« on: December 10, 2012, 08:35:17 am »

allow me a stupid question ... why does the changed imdb script have the suffix .psf?
it's the one and only pvd file with this ending if Im not mistaked.
did I miss something?

Perhaps because this is very strange.
Posted by: JohnDough
« on: December 09, 2012, 12:57:06 pm »

allow me a stupid question ... why does the changed imdb script have the suffix .psf?
it's the one and only pvd file with this ending if Im not mistaked.
did I miss something?

thanks,
j
Posted by: Ivek23
« on: December 07, 2012, 01:41:39 pm »

Again I made corrections to:
  • search results
Repaired Imdb Movie Script and Imdb Movie(1) Script is attached here.
Posted by: Ivek23
« on: December 01, 2012, 08:33:54 pm »

In Imdb plugin should fix edit search results, so now displays a message: "No movies found" , therefore the new movies first use Imdb Movie script, then just Imdb plugin. To find and download the data in one step is better to use Imdb Movie + imdb batch file.

Applies to the movies that are already in the database.
Posted by: Ivek23
« on: November 30, 2012, 11:12:01 am »

Thanks a lot, Ivek23!

Everything back to normal thanks to your work. With PVD 1.0.2.3 and your IMDb Movie script + IMDb batch the IMDb import became useful again.
 ;D

Welcome.
Posted by: Melmoth
« on: November 30, 2012, 11:06:18 am »

Thanks a lot, Ivek23!

Everything back to normal thanks to your work. With PVD 1.0.2.3 and your IMDb Movie script + IMDb batch the IMDb import became useful again.
 ;D
anything