Author Topic: Episodes TV Series Problem  (Read 35679 times)

0 Members and 1 Guest are viewing this topic.

Offline Ivek23

  • Global Moderator
  • *****
  • Posts: 2667
    • View Profile
Re: Episodes TV Series Problem
« Reply #40 on: October 02, 2021, 10:04:24 am »
Great job Ivek!
I've been trying the new scripts and they all seem to work fine.

I still have trouble with season trees in series:
When I run the new IMDB Movie(episodelist) (a) script and IMDB Movie(episodelist) script using proxomitron I get the error message HTTP/1.1 404 Not Found.
What seems to be the problem?

The same mistake happened to me today. However, the cause was an internet connection lost and the test IMDb script could not connect to the server at www.imdb.com

Maybe this is just one of the causes of your problems.
Ivek23
Win 10 64bit (32bit)   PVD v0.9.9.21, PVD v1.0.2.7, PVD v1.0.2.7 + MOD


Offline afrocuban

  • Moderator
  • *****
  • Posts: 444
    • View Profile
Re: Episodes TV Series Problem
« Reply #41 on: October 06, 2021, 07:02:43 pm »
Maybe this piece of code from series script explains a bit more?

Quote
   if (Pos('404 Not Found',Result)>0) then begin  //Banned IP. WEB_SPECIFIC.
        If BYPASS_SILENT Then ShowMessage('The URL is not in use (404 Not Found).'+Chr(13)+'Go to the provider web in order to in order to'+Chr(13)+'find the good page',SCRIPT_NAME);
        LogMessage(Chr(9)+Chr(9)+'      404 Not Found|');
        Result:=''; //Fatal error
    End;
   if (Pos('404 Error - IMDb',Result)>0) then begin  //Banned IP. WEB_SPECIFIC.
        If BYPASS_SILENT Then ShowMessage('The URL is not in use (404 Error - IMDb).'+Chr(13)+'Go to the provider web in order to in order to'+Chr(13)+'find the good page',SCRIPT_NAME);
        LogMessage(Chr(9)+Chr(9)+'      404 Error - IMDb|');
        Result:=''; //Fatal error

Offline Ivek23

  • Global Moderator
  • *****
  • Posts: 2667
    • View Profile
Re: Episodes TV Series Problem
« Reply #42 on: October 07, 2021, 09:12:13 am »
Maybe this piece of code from series script explains a bit more?

Quote
   if (Pos('404 Not Found',Result)>0) then begin  //Banned IP. WEB_SPECIFIC.
        If BYPASS_SILENT Then ShowMessage('The URL is not in use (404 Not Found).'+Chr(13)+'Go to the provider web in order to in order to'+Chr(13)+'find the good page',SCRIPT_NAME);
        LogMessage(Chr(9)+Chr(9)+'      404 Not Found|');
        Result:=''; //Fatal error
    End;
   if (Pos('404 Error - IMDb',Result)>0) then begin  //Banned IP. WEB_SPECIFIC.
        If BYPASS_SILENT Then ShowMessage('The URL is not in use (404 Error - IMDb).'+Chr(13)+'Go to the provider web in order to in order to'+Chr(13)+'find the good page',SCRIPT_NAME);
        LogMessage(Chr(9)+Chr(9)+'      404 Error - IMDb|');
        Result:=''; //Fatal error

Thanks, afrocuban for this warning.

still have trouble with season trees in series:
When I run the new IMDB Movie(episodelist) (a) script and IMDB Movie(episodelist) script using proxomitron I get the error message HTTP/1.1 404 Not Found.
What seems to be the problem?
This happpens with all series when I try to run IMDB Movie(episodelist) (a) script and IMDB Movie(episodelist) script.
I can run IMDB_[EN][HTTPS]-a script, but the Imdb Movie Info-2a script gives the same error message.

All of the above scripts have the following piece of code in the ParsePage function
Quote
function ParsePage(HTML:String;URL:AnsiString):Cardinal; //BlockOpen
Begin
LogMessage('Function ParsePage BEGIN ====================== |');
LogMessage('Global Var-Mode | '+IntToStr(Mode)+' |');

Wait (pauseBeforeLoad);
HTML:=HTMLToText(HTML);
HTML:=StringReplace(HTML,'http://imdb.com','http://www.imdb.com',True,True,False);
LogMessage('     Parsing search Movie search results');

If (0<Pos('404 Not Found',HTML)) OR (0<Pos('HTTP/1.1 404 Not Found',HTML)) Then Begin
    ShowMessage('No results.','IMDb Search Results');
    Result:=prError;
    Exit;
   LogMessage('   -------- ParsePage Error Result ( '+IntToStr(Result)+' )');
   LogMessage('Function ParsePage smSearch-prError END======================|');
   LogMessage('Function ParsePage prError END======================|');
End;


If Pos('Find - IMDb',HTML) > 0 Then Begin
.
.
.
, which is probably the cause of these problems.

Block this part of the code for each of the above scripts.
Quote
//If (0<Pos('404 Not Found',HTML)) OR (0<Pos('HTTP/1.1 404 Not Found',HTML)) Then Begin
//    ShowMessage('No results.','IMDb Search Results');
//    Result:=prError;
//    Exit;
//   LogMessage('   -------- ParsePage Error Result ( '+IntToStr(Result)+' )');
   //LogMessage('Function ParsePage smSearch-prError END======================|');
   //LogMessage('Function ParsePage prError END======================|');
//End;

Then do a retest for each script separately to see if the same error still occurs.
Ivek23
Win 10 64bit (32bit)   PVD v0.9.9.21, PVD v1.0.2.7, PVD v1.0.2.7 + MOD


Offline Ivek23

  • Global Moderator
  • *****
  • Posts: 2667
    • View Profile
Re: Episodes TV Series Problem
« Reply #43 on: September 26, 2022, 08:32:36 am »
Notification:

IMDB Movie(episode list) (a) script and IMDB Movie(episode list) script using Proxomitron no longer work.
Ivek23
Win 10 64bit (32bit)   PVD v0.9.9.21, PVD v1.0.2.7, PVD v1.0.2.7 + MOD


Offline Pacifist

  • User
  • ***
  • Posts: 62
    • View Profile
Re: Episodes TV Series Problem
« Reply #44 on: September 27, 2022, 11:49:55 am »
Notification:

IMDB Movie(episode list) (a) script and IMDB Movie(episode list) script using Proxomitron no longer work.

nightmare.  :'( :'( :'(

Offline Pacifist

  • User
  • ***
  • Posts: 62
    • View Profile
Re: Episodes TV Series Problem
« Reply #45 on: November 07, 2022, 08:05:10 am »
Still can't get Imdb_Movie (episode list) to work on HTTPS?  :-[ :-[ :'( :'( :'( :'( :'( :'( :'(
Please!!!!!  ::)

Offline Ivek23

  • Global Moderator
  • *****
  • Posts: 2667
    • View Profile
Re: Episodes TV Series Problem
« Reply #46 on: November 07, 2022, 09:19:08 am »
Still can't get Imdb_Movie (episode list) to work on HTTPS?  :-[ :-[ :'( :'( :'( :'( :'( :'( :'(
Please!!!!!  ::)

Sorry, but at the moment I have quite a few health problems (including with my eyes), so I can't edit any Imdb scripts at the moment.
Ivek23
Win 10 64bit (32bit)   PVD v0.9.9.21, PVD v1.0.2.7, PVD v1.0.2.7 + MOD


Offline Pacifist

  • User
  • ***
  • Posts: 62
    • View Profile
Re: Episodes TV Series Problem
« Reply #47 on: November 07, 2022, 02:44:44 pm »
Still can't get Imdb_Movie (episode list) to work on HTTPS?  :-[ :-[ :'( :'( :'( :'( :'( :'( :'(
Please!!!!!  ::)

Sorry, but at the moment I have quite a few health problems (including with my eyes), so I can't edit any Imdb scripts at the moment.
I am wishing you all the best for a swift recovery.  :-*

Offline Ivek23

  • Global Moderator
  • *****
  • Posts: 2667
    • View Profile
Re: Episodes TV Series Problem
« Reply #48 on: November 07, 2022, 08:42:17 pm »
Still can't get Imdb_Movie (episode list) to work on HTTPS?  :-[ :-[ :'( :'( :'( :'( :'( :'( :'(
Please!!!!!  ::)

Sorry, but at the moment I have quite a few health problems (including with my eyes), so I can't edit any Imdb scripts at the moment.
I am wishing you all the best for a swift recovery.  :-*

Thank you. I too hope it will be as soon as possible.
Ivek23
Win 10 64bit (32bit)   PVD v0.9.9.21, PVD v1.0.2.7, PVD v1.0.2.7 + MOD


Offline Ivek23

  • Global Moderator
  • *****
  • Posts: 2667
    • View Profile
Re: Episodes TV Series Problem
« Reply #49 on: November 23, 2022, 08:59:29 am »
Sorry, but at the moment I have quite a few health problems (including with my eyes), so I can't edit any Imdb scripts at the moment.

Slowly my health is improving, but my mother's health is deteriorating. This means that I don't have much time to fix and edit all the IMDB scripts. We will see when I can add some IMDB script (new version) to the forum.  I hope it will be as soon as possible.
Ivek23
Win 10 64bit (32bit)   PVD v0.9.9.21, PVD v1.0.2.7, PVD v1.0.2.7 + MOD


Offline Ivek23

  • Global Moderator
  • *****
  • Posts: 2667
    • View Profile
Re: Episodes TV Series Problem
« Reply #50 on: February 27, 2024, 07:06:49 pm »
You can find the corrected IMDB_[EN][HTTPS](episodes)_TEST_2b script at the link below.

http://www.videodb.info/forum_en/index.php/topic,4134.msg22023.html#msg22023
Ivek23
Win 10 64bit (32bit)   PVD v0.9.9.21, PVD v1.0.2.7, PVD v1.0.2.7 + MOD


Offline afrocuban

  • Moderator
  • *****
  • Posts: 444
    • View Profile
Re: Episodes TV Series Problem
« Reply #51 on: February 29, 2024, 02:06:47 am »
Thank you a ton Ivek.

Just a minor update: script now imports SxEx, instead of Air Date. Other fields work at first try.

Offline Ivek23

  • Global Moderator
  • *****
  • Posts: 2667
    • View Profile
Re: Episodes TV Series Problem
« Reply #52 on: February 29, 2024, 03:39:47 pm »
Please upload your skin to the forum. Then I will see your custom fields and it will be easier to customize your custom fields in scripts as well.
Ivek23
Win 10 64bit (32bit)   PVD v0.9.9.21, PVD v1.0.2.7, PVD v1.0.2.7 + MOD


Offline afrocuban

  • Moderator
  • *****
  • Posts: 444
    • View Profile
Re: Episodes TV Series Problem
« Reply #53 on: February 29, 2024, 08:39:37 pm »
Thank you, I wasn't expected you would engage in single user's preferences.

Offline Ivek23

  • Global Moderator
  • *****
  • Posts: 2667
    • View Profile
Re: Episodes TV Series Problem
« Reply #54 on: March 01, 2024, 08:34:39 am »
Thank you, I wasn't expected you would engage in single user's preferences.

These are the settings that come in handy so that I can solve problems both for you and for other users. For me, it comes in handy, which also means that I can more easily test a certain script and find the right solutions for transferring information.
Ivek23
Win 10 64bit (32bit)   PVD v0.9.9.21, PVD v1.0.2.7, PVD v1.0.2.7 + MOD


Offline Ivek23

  • Global Moderator
  • *****
  • Posts: 2667
    • View Profile
Re: Episodes TV Series Problem
« Reply #55 on: March 03, 2024, 10:00:00 am »
Thank you, I wasn't expected you would engage in single user's preferences.

These are the settings that come in handy so that I can solve problems both for you and for other users. For me, it comes in handy, which also means that I can more easily test a certain script and find the right solutions for transferring information.

Your skin was very helpful because I was able to see and add certain fields to the script to transfer information, because before I didn't know which fields needed to be added to the script. Maybe another day or two, depending on how I manage with time (unforeseen things or an event came in the way) for tests to fix possible errors, then it will be available to users.

Ivek23
Win 10 64bit (32bit)   PVD v0.9.9.21, PVD v1.0.2.7, PVD v1.0.2.7 + MOD


Offline Ivek23

  • Global Moderator
  • *****
  • Posts: 2667
    • View Profile
Re: Episodes TV Series Problem
« Reply #56 on: March 05, 2024, 08:09:10 am »
Thank you a ton Ivek.

Just a minor update: script now imports SxEx, instead of Air Date. Other fields work at first try.

Fixed transferring information to the IMDB_Series-year custom field. Also given is a memo IMDB_Series_year custom field where it is now visible which season and episode it is where you updated the information

Synopsis data download works the same as described below.


Code: [Select]
Synopsis data download fixed, so that it now also transfers information to the comment field and to the custom IMDB Synopsis memo field. The Summaries information is now transferred to the comment field. Summaries information is mostly present on web pages. A custom IMDB-Synopsis memo field has also been added, because in some cases Synopsis information is also present on web pages.
The link to the corrected script can be seen below.

You can find the corrected IMDB_[EN][HTTPS](episodes)_TEST_2b script at the link below.

http://www.videodb.info/forum_en/index.php/topic,4134.msg22023.html#msg22023

Ivek23
Win 10 64bit (32bit)   PVD v0.9.9.21, PVD v1.0.2.7, PVD v1.0.2.7 + MOD


Offline Ivek23

  • Global Moderator
  • *****
  • Posts: 2667
    • View Profile
Re: Episodes TV Series Problem
« Reply #57 on: March 19, 2024, 09:37:59 am »
Notification:

IMDB Movie(episode list) (a) script and IMDB Movie(episode list) script using Proxomitron no longer work.

IMDB Movie(episode list) (a) script and IMDB Movie(episode list) script can no longer be updated using Proxomitron, because the new Imdb layout and secure https connection no longer allow this.

Still can't get Imdb_Movie (episode list) to work on HTTPS?  :-[ :-[ :'( :'( :'( :'( :'( :'( :'(
Please!!!!!  ::)

The IMDB Movie(episodelist) script now works in HTTPS mode, the same as the IMDB_[EN][HTTPS script. This means that now, unfortunately for some PVD users, IMDB Movie(episode list) (a) script and IMDB Movie(episode list) script only work with Personal Video Database MOD program versions.
Ivek23
Win 10 64bit (32bit)   PVD v0.9.9.21, PVD v1.0.2.7, PVD v1.0.2.7 + MOD


Offline Ivek23

  • Global Moderator
  • *****
  • Posts: 2667
    • View Profile
Re: Episodes TV Series Problem
« Reply #58 on: March 19, 2024, 10:41:59 am »
IMDB Movie(episode list) (a) script  can be found at the link below.

http://www.videodb.info/forum_en/index.php/topic,4134.msg22042.html#msg22042



Imdb Movie(episodelist) [HTTPS] script can be found at the link below.

http://www.videodb.info/forum_en/index.php/topic,4134.msg22044.html#msg22044
Ivek23
Win 10 64bit (32bit)   PVD v0.9.9.21, PVD v1.0.2.7, PVD v1.0.2.7 + MOD