MyBB Community Forums

Full Version: resetting forum views
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How would I go about resetting forum views? I´m thinking a database field but I don´t have too much experience. Thanks in advance for any help..
What do you mean by "forum views"?

Do you mean user sessions? Thread views?
(2011-01-12, 02:16 AM)UndiscoveredTalent Wrote: [ -> ]What do you mean by "forum views"?

Do you mean user sessions? Thread views?

Just forum views. I was trying different mods and have a ton of views from trying things out. I just wanna reset views to 0..

I think he means forum statistics and what not. If you want to "refresh" the data, go clear the cache under Tools & Maintenance. If you want to reset your forum to 0, 0, 0, and 0 for all the stats (which I don't know why you would want to) reinstall your forum Smile
Please elaborate more on your post.
Forum views is nothing that can be re-set. If you mean to set "Thread Views" then run the following query in phpmyadmin;
UPDATE `mybb_threads` SET `views` = '0'

Replace mybb_ with your database prefix.