[RELEASE] - Rating Update v1.4.3 - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27) +---- Forum: Program Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=151) +---- Thread: [RELEASE] - Rating Update v1.4.3 (/showthread.php?tid=107331) |
RE: [RELEASE] - Rating Update v1.4.0 - Yaff1e - 2015-01-10 Brilliant, that worked perfectly. Thankyou very much RE: [RELEASE] - Rating Update v1.4.0 - Eisi2005 - 2015-01-11 @genuk360 thanks for this great help with php and openelec 5.0 !! RE: [RELEASE] - Rating Update v1.4.0 - oleroc - 2015-01-17 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. Change "is failed" to "has failed" in error messages. Code: Line 264: msgid "The JSON query has failed, sorry" And this line.. It is difficult to understand what this setting is. Initially I thought I had to provide a txt file of some sort, until I searched the forum. If you change it to what I have suggested below, it should be pretty clear. Change if from: Code: Line 344: msgid "Folder path for the text file of the movies missing in the Top250" to Code: Line 344: msgid "Save Path for txt file listing Top250 Movies you don't have" /om RE: [RELEASE] - Rating Update v1.4.0 - gordi73 - 2015-02-04 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 RE: [RELEASE] - Rating Update v1.4.0 - Simkin84 - 2015-02-04 Any progress on updating only newly added movies? RE: [RELEASE] - Rating Update v1.4.0 - Edworld - 2015-02-05 (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. right click the addon and browse to where you have the php folder RE: [RELEASE] - Rating Update v1.4.0 - Edworld - 2015-02-05 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? RE: [RELEASE] - Rating Update v1.4.0 - m4x1m - 2015-02-05 (2015-01-17, 02:16)oleroc Wrote: Hi.. Thanks for a really cool Script. Thanks (2015-02-04, 22:02)Simkin84 Wrote: Any progress on updating only newly added movies? Nope, I'm very busy at this time! (2015-02-05, 03:36)Edworld Wrote: Installed this script today What does Basically updates the ratings and the number of users who have voted of all your movies/tv shows (no single episodes) from IMDb and also updates the top250 list. The script gets the general rating of tv show! RE: [RELEASE] - Rating Update v1.4.0 - gordi73 - 2015-02-05 (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. sorry i am a dummy newbie where is php folder? if i right click, by default it gives me path: usr/bin what should i change, i don't know where the file is? Scusami ma sono veramente ignorante in materia (ho provato anche a vedere il readme ma non ci ho capito niente). Come lo tovo questo php-cgi? potresti aiutarmi? Thanks/grazie! RE: [RELEASE] - Rating Update v1.4.0 - craigey1 - 2015-02-05 http://php.net/manual/en/install.unix.php http://php.net/manual/en/install.windows.php http://php.net/manual/en/install.macosx.php RE: [RELEASE] - Rating Update v1.4.0 - gordi73 - 2015-02-05 (2015-02-05, 13:53)craigey1 Wrote: http://php.net/manual/en/install.unix.php i have a Minix Neo X8-H plus with android gotham 13. But as i said im very newbie. i've tried to follow readme on the first page but it's too difficult for me. Is it possible to add php-cgi automatcally on a next release of Rating Update? RE: [RELEASE] - Rating Update v1.4.0 - craigey1 - 2015-02-05 Sorry, I've no idea how you would install PHP on that device. This script wont work without it being installed. RE: [RELEASE] - Rating Update v1.4.0 - neurosis13 - 2015-02-14 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 http://xbmclogs.com/show.php?id=426488 RE: [RELEASE] - Rating Update v1.4.0 - m4x1m - 2015-02-14 (2015-02-14, 14:19)neurosis13 Wrote: hi guys, 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. RE: [RELEASE] - Rating Update v1.4.0 - neurosis13 - 2015-02-14 (2015-02-14, 17:32)m4x1m Wrote:(2015-02-14, 14:19)neurosis13 Wrote: hi guys, yes, that was it, working now! thanks |