MyBB Community Forums

Full Version: stats table deleted
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello
I deleted by mistake my "xx_stats" table

and i don't have anybackup
is there any way to recover it?
will not having it make bad effect in my forum?
Run this in phpmyadmin (replace mybb_ with your table prefix)
CREATE TABLE mybb_stats (
	dateline bigint(30) NOT NULL default '0',
	numusers int unsigned NOT NULL default '0',
	numthreads int unsigned NOT NULL default '0',
	numposts int unsigned NOT NULL default '0',
	PRIMARY KEY(dateline)
) TYPE=MyISAM;

Then rebuild your stats in the admincp. That should fix it.