Forum Replies Created
-
I have the same problem. as NrFive and Iwikia. I wonder if they solved the problem.
Thanks.
In reply to: bbpress posting errors? missing database tables!Hello,
If mysql 5.5.x was used and the problem occurred in bbpress forum installed within buddypress,
1) delete buddypress.
2) It might be useful to check if the tables for bbpress were deleted. Check also there is no bb-config.php in the web root folder.
3) reinstall buddypress
4) change ‘TYPE = MYISAM’ to ‘ENGINE = MYISAM’ in /wp-content/plugins/buddypress/bp-forums/bbpress/bb-admin/includes/defaults.bb-schema.php before creating groups and using forums.
5) create groups and test forums.In reply to: bbpress posting errors? missing database tables!For mysql 5.5.x, error occurred when creating ‘wp_bb_posts’ table.
‘TYPE = MYISAM’ should change to ‘ENGINE = MYISAM’CREATE TABLE IF NOT EXISTS `wp_bb_posts` (
`post_id` bigint(20) NOT NULL auto_increment,
`forum_id` int(10) NOT NULL default 1,
`topic_id` bigint(20) NOT NULL default 1,
`poster_id` int(10) NOT NULL default 0,
`post_text` text NOT NULL,
`post_time` datetime NOT NULL default ‘0000-00-00 00:00:00’,
`poster_ip` varchar(15) NOT NULL default ”,
`post_status` tinyint(1) NOT NULL default 0,
`post_position` bigint(20) NOT NULL default 0,
PRIMARY KEY (`post_id`),
KEY `topic_time` (`topic_id`, `post_time`),
KEY `poster_time` (`poster_id`, `post_time`),
KEY `post_time` (`post_time`),
FULLTEXT KEY `post_text` (`post_text`)
) ENGINE = MYISAM DEFAULT CHARACTER SET ‘utf8’;