2015-01-10, 23:59
Brilliant, that worked perfectly. Thankyou very much
Line 264: msgid "The JSON query has failed, sorry"
Line 268: msgid "The query to IMDb site has failed, sorry"
Line 276: msgid "The query to the database has failed, sorry"
Line 344: msgid "Folder path for the text file of the movies missing in the Top250"
Line 344: msgid "Save Path for txt file listing Top250 Movies you don't have"
(2015-01-17, 02:16)oleroc Wrote: Hi.. Thanks for a really cool Script.
I have a suggestion for a couple of text changes in the english.po file for the next version.
(2015-02-04, 22:02)Simkin84 Wrote: Any progress on updating only newly added movies?
(2015-02-05, 03:36)Edworld Wrote: Installed this script today
One question: Does this script get the tvshow rating from IMDB only or can it also get the rating for each tvshow by episode?
(2015-02-05, 02:52)Edworld Wrote:(2015-02-04, 18:26)gordi73 Wrote: hi, when i try to launch RATING UPDATE it says that it wasn't able to find binary PHP-CGI.
How can i fix this?
Thanks
right click the addon and browse to where you have the php folder
(2015-02-05, 13:53)craigey1 Wrote: http://php.net/manual/en/install.unix.php
http://php.net/manual/en/install.windows.php
http://php.net/manual/en/install.macosx.php
(2015-02-14, 14:19)neurosis13 Wrote: hi guys,
i tested the script with os x yosemite with this php5 installation at http://php-osx.liip.ch
method:
"All you need to do to install the whole thing is opening up a Shell and execute the following line:
curl -s http://php-osx.liip.ch/install.sh | bash -s 5.6 "
it worked fine but i realized that it doesn't work with some movies:
i looked for a pattern, i thought maybe this happens only with NR + non US movies but here it works:
a NR and US movie doesn't work:
so the only pattern found till now is that when the script failed to query IMDb then it's a NR movie.
But i can say that 90% of my movies don't have this problem so it's not a catastrophe.
here is the kodi.log
error_reporting(E_ALL & ~E_NOTICE);
require_once ("../imdb/imdb.class.php");
(2015-02-14, 17:32)m4x1m Wrote:(2015-02-14, 14:19)neurosis13 Wrote: hi guys,
i tested the script with os x yosemite with this php5 installation at http://php-osx.liip.ch
method:
"All you need to do to install the whole thing is opening up a Shell and execute the following line:
curl -s http://php-osx.liip.ch/install.sh | bash -s 5.6 "
it worked fine but i realized that it doesn't work with some movies:
i looked for a pattern, i thought maybe this happens only with NR + non US movies but here it works:
a NR and US movie doesn't work:
so the only pattern found till now is that when the script failed to query IMDb then it's a NR movie.
But i can say that 90% of my movies don't have this problem so it's not a catastrophe.
here is the kodi.log
Try to add this
Code:error_reporting(E_ALL & ~E_NOTICE);
in .kodi/addons/script.ratingupdate/resources/lib/php/getRatings.php before the line
Code:require_once ("../imdb/imdb.class.php");
and give me a feedback. Thanks.