Karma - How do I reset karma totals to zero: Difference between revisions From Online Manual

Jump to: navigation, search
m (Bot: Automated text replacement (-version=2 +version=2.0))
mNo edit summary
Line 16: Line 16:
}}
}}


Replace ''prefix'' with the prefix your forum uses for its SQL tables. By default this is ''smf_''.
Replace the prefix 'smf_' with your custom prefix if 'smf_' is not used by default.


<noinclude>[[category:FAQ]]</noinclude>
<noinclude>[[category:FAQ]]</noinclude>

Revision as of 09:03, 3 September 2015

Currently you need to run a query from phpMyAdmin to reset the karma totals on your forum.

To do so, login to your phpMyAdmin and select your forum database from the left panel and Query from the right panel. In the SQL-query box enter the following query:

UPDATE prefix_members
SET karmaGood = 0, karmaBad = 0;
UPDATE prefix_members
SET karma_good = 0, karma_bad = 0;

Replace the prefix 'smf_' with your custom prefix if 'smf_' is not used by default.



Advertisement: