Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: bbpress posting errors? missing database tables!

@pjries Okay actually I’m confused by the bit you said was important. When you wrote
`CREATE TABLE IF NOT EXISTS tablename_bb_forums`

did you mean I should insert the wp_???_ bit ? Or whatever the prefix used in other tables?
I think that’s what you meant, so would the command look like this?
`CREATE TABLE IF NOT EXISTS `wp_i28ycb_bb_forums` (
`forum_id` int(10) NOT NULL auto_increment,
`forum_name` varchar(150) NOT NULL default ”,
`forum_slug` varchar(255) NOT NULL default ”,
`forum_desc` text NOT NULL,
`forum_parent` int(10) NOT NULL default 0,
`forum_order` int(10) NOT NULL default 0,
`topics` bigint(20) NOT NULL default 0,
`posts` bigint(20) NOT NULL default 0,
PRIMARY KEY (`forum_id`),
KEY `forum_slug` (`forum_slug`)
);
`

Skip to toolbar