Info
- 3 posts
- 2 voices
- Started 11 months ago by valked1n
- Latest reply from Sithu Thwin
- This topic is not resolved
I got this error problem :(
-
- Posted 11 months ago #
SQL ERROR!
>>> Database: xxxxxxxxxxx (localhost)
>>>>>> CREATE TABLE IF NOT EXISTSbb_posts(
post_idbigint(20) NOT NULL auto_increment,
forum_idint(10) NOT NULL default 1,
topic_idbigint(20) NOT NULL default 1,
poster_idint(10) NOT NULL default 0,
post_texttext NOT NULL,
post_timedatetime NOT NULL default '0000-00-00 00:00:00',
poster_ipvarchar(15) NOT NULL default '',
post_statustinyint(1) NOT NULL default 0,
post_positionbigint(20) NOT NULL default 0,
PRIMARY KEY (post_id),
KEYtopic_time(topic_id,post_time),
KEYposter_time(poster_id,post_time),
KEYpost_time(post_time),
FULLTEXT KEYpost_text(post_text)
) TYPE = MYISAM DEFAULT CHARACTER SET 'utf8';
>>>>>> You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE = MYISAM DEFAULT CHARACTER SET 'utf8'' at line 16
Key master email not sent!I am using XAMPP and I tried to integrate it with WP which I installed it into the same database.
can anyone please help me ?
-
- Posted 11 months ago #
I have the exactly the same problem. I'm using MySql server version 5.5.12 on iis . When I look at database from phpMyadmin. bbPress post tables are missing. So although everything fine on forum, I can't view post nor add new post.
-
- Posted 11 months ago #
I got a hack for it if you are using MySql 5.5.
It reported on trac at https://bbpress.trac.wordpress.org/ticket/1486
Change TYPE = MYISAM to ENGINE = MYISAM in your bbPress installation's bb-admin/includes/defaults.bb-schema.php -
You must log in to post.