Filmaffinit 3.0.7 no funciona
-
- Posts: 99
- Joined: 2010-02-22 23:15:05
Filmaffinit 3.0.7 no funciona
Recientemente agregué películas al CATALOGO, y daba el siguiente error: Socket Error # 11001 Host Not Found.
Tenía el script 3.0.6 y actualicé el script.
Había agregado tres películas y lo extraño que solo una la aceptó. Las otras dos volvió a salir el mismo error, es decir Socket Error # 11001 Host Not Found.
Gracias
Tenía el script 3.0.6 y actualicé el script.
Había agregado tres películas y lo extraño que solo una la aceptó. Las otras dos volvió a salir el mismo error, es decir Socket Error # 11001 Host Not Found.
Gracias
Re: Filmaffinit 3.0.7 no funciona
For which movie do you get errors? (if it only occurs for some movies)
-
- Posts: 99
- Joined: 2010-02-22 23:15:05
Re: Filmaffinit 3.0.7 no funciona
Contesto primero en español estimado antp, con Anna (2019) de Luc Besson, no ocurrió, y funcionó bien el script, ya que luego de buscar resultados similares o nombres similares, el programa o script detectó varias películas, dando yo enter a la correcta.
Con Toy Story 4 NO FUNCIONÓ.
Con L'incroyable histoire du facteur Cheval (2018) de Nils Tavernier, NO FUNCIONÓ.
Con Unga Astrid (2018) dirigida por Pernille Fischer Christensen, NO FUNCIONÓ.
Con Tesnota (2018) dirigida por Kantemir Balagov, NO FUNCIONÓ.
Con Spider-Man: Far from Home, NO FUNCIONÓ.
Hay MUCHAS MÁS, LA LISTA ES INTERMINABLE.
English:
I answer first in Spanish estimated antp, with Anna (2019) by Luc Besson, it did not happen, and the script worked well, since after looking for similar results or similar names, the program or script detected several movies, giving me the correct .
With Toy Story 4 it didn't work.
With L'incroyable histoire du facteur Cheval (2018) by Nils Tavernier, IT DID NOT WORK.
With Unga Astrid (2018) directed by Pernille Fischer Christensen, IT DID NOT WORK.
With Tesnota (2018) directed by Kantemir Balagov, IT DID NOT WORK.
With Spider-Man: Far from Home, IT DID NOT WORK.
El script NO FUNCIONA.
Saludos
Re: Filmaffinit 3.0.7 no funciona
Yo hice una copia del archivo del script, la abrí con Notepad++, hice un cambio cualquiera que no altere el script, lo guardé y ahora funciona con todas las películas.
Re: Filmaffinit 3.0.7 no funciona
For me these movies work
Which version of the script do you have? 3.06 or 3.07 ? (written at the bottom of the window when the script is selected)
And which version of the program? 4.2.2 ?
Which version of the script do you have? 3.06 or 3.07 ? (written at the bottom of the window when the script is selected)
And which version of the program? 4.2.2 ?
Re: Filmaffinit 3.0.7 no funciona
Sorry, In my case:
Movies: John Wick: Chapter 3 - Parabellum, X-Men: Dark Phoenix, Brightburn, Avengers: Endgame, Deadpool 2, etc.
Ant Movie Catalog 4.2.2
Filmaffinity 3.07
The "url" field appears
"filmaffinity.com + filmaffinity.com", twice
The other fields appear blank
If I have the "Script Options" -> "DontAsk" = 0 then it works. If I have "DontAsk" = 1 then it doesn't work
If I change this:
For this:
It works.
Movies: John Wick: Chapter 3 - Parabellum, X-Men: Dark Phoenix, Brightburn, Avengers: Endgame, Deadpool 2, etc.
Ant Movie Catalog 4.2.2
Filmaffinity 3.07
The "url" field appears
Code: Select all
https://www.filmaffinity.comhttps://www.filmaffinity.com/es/film615543.html
The other fields appear blank
If I have the "Script Options" -> "DontAsk" = 0 then it works. If I have "DontAsk" = 1 then it doesn't work
If I change this:
Code: Select all
230 if ((Count = 1) and (GetOption('DontAsk') = 1)) then
231 AnalyzeMoviePage(BaseURL + MovieAddress)
329 if ((Count = 1) and (GetOption('DontAsk') = 1)) then
330 AnalyzeMoviePage(BaseURL + MovieAddress)
Code: Select all
230 if ((Count = 1) and (GetOption('DontAsk') = 1)) then
231 AnalyzeMoviePage(MovieAddress)
329 if ((Count = 1) and (GetOption('DontAsk') = 1)) then
330 AnalyzeMoviePage(MovieAddress)
-
- Posts: 99
- Joined: 2010-02-22 23:15:05
Re: Filmaffinit 3.0.7 no funciona
antp:
Actualicé a la versión 4.2.2 y también actualicé del 3.06 al 3.07 o sea el programa 4.2.2 y el script 3.07 al final del programa
I updated to version 4.2.2 and also updated from 3.06 to 3.07
-
- Posts: 99
- Joined: 2010-02-22 23:15:05
Re: Filmaffinit 3.0.7 no funciona
kadmon wrote: ↑2019-10-01 08:48:56 Sorry, In my case:
Movies: John Wick: Chapter 3 - Parabellum, X-Men: Dark Phoenix, Brightburn, Avengers: Endgame, Deadpool 2, etc.
Ant Movie Catalog 4.2.2
Filmaffinity 3.07
The "url" field appears"filmaffinity.com + filmaffinity.com", twiceCode: Select all
https://www.filmaffinity.comhttps://www.filmaffinity.com/es/film615543.html
The other fields appear blank
If I have the "Script Options" -> "DontAsk" = 0 then it works. If I have "DontAsk" = 1 then it doesn't work
If I change this:
Amigo, tenés razón, modifiqué en el script solo los campos 230 y 231 y 329 y 330 que en el mío eran otros números, es decir 330 y 331 y funcionó.Code: Select all
230 if ((Count = 1) and (GetOption('DontAsk') = 1)) then 231 AnalyzeMoviePage(BaseURL + MovieAddress) 329 if ((Count = 1) and (GetOption('DontAsk') = 1)) then 330 AnalyzeMoviePage(BaseURL + MovieAddress)
For this:
It works.Code: Select all
230 if ((Count = 1) and (GetOption('DontAsk') = 1)) then 231 AnalyzeMoviePage(MovieAddress) 329 if ((Count = 1) and (GetOption('DontAsk') = 1)) then 330 AnalyzeMoviePage(MovieAddress)