• Resolved bartas139

    (@bartas139)


    Hi I have some problems with getting details from IMDb, I have this code

    <?php
    $movie = get_post_custom_values("imdb");
    $vote = get_imdb_movie($movie[0]);
        echo $vote["year"];
    ?>

    And it works very well, it displays the year of movie with specificed ID, but when I want to get Country, Actors, Writers, Director… it doesnt work

    <?php
    $movie = get_post_custom_values("imdb");
    $vote = get_imdb_movie($movie[0]);
        echo $vote["director"];
    ?>

    And one bonus question. Imdbrating works well, but a few days ago the rating has lost by the older posts. The new posts have it, older not.

    https://www.ads-software.com/plugins/imdb-connector/

Viewing 5 replies - 16 through 20 (of 20 total)
  • Thread Starter bartas139

    (@bartas139)

    Actualy I dont know which info could help u solve this problem. I just redownload IMDB connector and still does not work.
    I am using WordPress 4.2.2 with THESE plugins

    Plugin Author thaikolja

    (@thaikolja)

    Well, try deactivating all plugins but IMDb Connector. If it works, there’s a plugin conflict. If it still doesn’t work, it’s a bug in IMDb Connector. That would narrow down the search significantly.

    Thread Starter bartas139

    (@bartas139)

    So it still doesnt work when I deactivated all other plugins

    Plugin Author thaikolja

    (@thaikolja)

    I’ve just taken a look at the screenshot you had provided. It looks like the settings page crashes at one point. In the code, after the “Off” radio button, there’s this function that may trigger it:

    $cached_movies = count(get_imdb_connector_cached_movies());

    What you can do:

    • Set “WP_DEBUG” variable in wp-config.php to “true” and see if it displays an error message on the plugin’s settings page. More information…
    • If there’s no error message, try changing the line I had mentioned above to $cached_movies = 0; and see if the whole page loads after that.
    Plugin Author thaikolja

    (@thaikolja)

    Any news?

Viewing 5 replies - 16 through 20 (of 20 total)
  • The topic ‘IMDb doesnt take some details’ is closed to new replies.