• Resolved ctrlaltdelete

    (@ctrlaltdelete)


    Hello, the migration tool is not working for me.
    My ratings are only stored on wp_postmeta (and nowhere else), it’s 3 metas (same names as wp_postratings)

    ratings_users = The total Number of votes.
    ratings_score = is the sum of all scores.
    ratings_average = it’s ratings_score / ratings_users

    But the importer doesn’t pick them up.

    View post on imgur.com

    View post on imgur.com

    I don’t think i’ll get a solution for this. It would require changing the importer it think.

    EDIT:
    Would this work for me?

    UPDATE wp_postmeta SET meta_key='rmp_vote_count' WHERE meta_key ='ratings_users';
    UPDATE wp_postmeta SET meta_key='rmp_rating_val_sum' WHERE meta_key ='ratings_score';
    UPDATE wp_postmeta SET meta_key='rmp_avg_rating' WHERE meta_key ='ratings_average';
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Blaz K.

    (@blazk)

    Hi @ctrlaltdelete,

    I guess you don’t have wp_postratings installed? Rate my Post first checks if wp_postratings is installed and only then it allows migration. So there are two options:

    1. Install wp_postratings
    2. Add the following to functions.php to trick Rate my Post into believing that wp_postratings is installed ??

    
    function the_ratings() {
      return false; 
    }
    

    Let me know how it goes.

    Regards,
    Blaz

    Thread Starter ctrlaltdelete

    (@ctrlaltdelete)

    Thanks i ended up using sql because it only detected 33 posts. No worries it’s migrated now.

    Plugin Support Blaz K.

    (@blazk)

    It only migrates posts that have ratings. So, I guess you only had 33 posts rated in WP-PostRatings.

    Regards,
    Blaz

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘No existing ratings found! Nothing to migrate!’ is closed to new replies.