MyBB Community Forums

Full Version: Change main forum post count?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

Is it possible to change the whole forum's post count (and topic count)? I am guessing there must be a way to do this in phpMyadmin, but not sure which file to look in?

Any ideas?

Thanks Smile

Sal
Sal Wrote:Hi,

Is it possible to change the whole forum's post count (and topic count)? I am guessing there must be a way to do this in phpMyadmin, but not sure which file to look in?

Any ideas?

Thanks Smile

Sal

For the forum post count:

Run this query on phpMyAdmin:

UPDATE mybb_forums SET posts=x WHERE fid=xx

If the root for your tables is different change it. And then change x to the number of posts you want it to say, and change xx to the Forum ID.

And for the topic count:

UPDATE mybb_threads SET replies=x WHERE tid=xx

x - Number of replies you want it to show
xx - Thread ID.

I don't know why you would want to do this though.... But there you have it Toungue