Jump to content

How to reset all forum member's reputation to 0?


RooMac

Recommended Posts

Hi all,

I've migrated from vBulletin 4.x to IPS 4.1.13.1 and I need to do afresh start for all members (all groups). So, I need to reset the reputation levels of all users to 0. How can I do it? I can't find any option in ACP or with any third-party app in Marketplace. Somebody please guide me how to do that? If there is a need execute some MySQL query, I'm happy to do that.

P.S. IPS support said they can't tell us any such option via MySQL query since nothing in this regard has been tested by them.

Thanks,

Peter

Link to comment
Share on other sites

You could always do something like this in MySQL:

UPDATE `database`.`core_members` SET  `pp_reputation_points` =  '0';

This isn't a complete wipe, but it will do what you're asking. ^_^ You'll need to clear the forum cache afterwards through the Support tool. I tested it on my account and my profile said that my reputation was "0" immediately.

It may also benefit you to wipe ("truncate") the "core_reputation_index" table.

Link to comment
Share on other sites

46 minutes ago, Peter Sowerby said:

@MDPP

Is there a way, we can reset/remove Member Titles of all members? Reason why we've revamped the forum structure and want the titles to be renewed. An SQL query will be helpful.

Hm, maybe this would help?

UPDATE `database`.`core_members` SET  `member_title` = '';

 

Link to comment
Share on other sites

  • 11 months later...

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...