View Full Version : cry.. (The used table type doesn't support FULLTEXT indexes)
fpouk
Mon 17th Dec '07, 12:36pm
im having a problem from step 1
Database error in vBulletin 3.6.8:
Invalid SQL:
CREATE TABLE socialgroup (
groupid INT unsigned NOT NULL auto_increment,
name VARCHAR(255) NOT NULL DEFAULT '',
description TEXT NOT NULL DEFAULT '',
creatoruserid INT unsigned NOT NULL DEFAULT '0',
dateline INT unsigned NOT NULL DEFAULT '0',
members INT unsigned NOT NULL DEFAULT '0',
picturecount INT unsigned NOT NULL DEFAULT '0',
lastpost INT unsigned NOT NULL DEFAULT '0',
lastposter VARCHAR(255) NOT NULL DEFAULT '',
lastposterid INT UNSIGNED NOT NULL DEFAULT '0',
lastgmid INT UNSIGNED NOT NULL DEFAULT '0',
visible INT UNSIGNED NOT NULL DEFAULT '0',
deleted INT UNSIGNED NOT NULL DEFAULT '0',
moderation INT UNSIGNED NOT NULL DEFAULT '0',
PRIMARY KEY (groupid),
KEY creatoruserid (creatoruserid),
KEY dateline (dateline),
FULLTEXT KEY name (name, description)
);
MySQL Error : The used table type doesn't support FULLTEXT indexes
Error Number : 1214
Andy Huang
Mon 17th Dec '07, 12:37pm
Seems like the same issue as the other one I just split over... except you're doing an upgrade instead of a fresh install. What MySQL server version are you guys using and what's your default table type?
Andy Huang
Mon 17th Dec '07, 12:47pm
It appears that MySQL 5 on Windows servers are setting default table types to innodb instead of myisam, and as innodb doesn't support fulltext, it causes that problem... devvies are testing a fix for this already, but I don't know when it will be released. In the mean time, you can try this:
Locate your my.ini (or my.cnf, not sure which one its called on your system) and find:
default-table-type=innodd
replace with:
default-table-type=myisam
then, restart mysql server and try again.
You're upgrading, so DO NOT drop the database as I suggested in another post, or you will lose data.
fpouk
Mon 17th Dec '07, 12:49pm
4.1.20 mysql
4.3.6 php
fpouk
Mon 17th Dec '07, 12:51pm
It appears that MySQL 5 on Windows servers are setting default table types to innodb instead of myisam, and as innodb doesn't support fulltext, it causes that problem... devvies are testing a fix for this already, but I don't know when it will be released. In the mean time, you can try this:
Locate your my.ini (or my.cnf, not sure which one its called on your system) and find:
default-table-type=innodd
replace with:
default-table-type=myisam
then, restart mysql server and try again.
You're upgrading, so DO NOT drop the database as I suggested in another post, or you will lose data.
dont have access to reseting the sql server..etc
:)
i guess i will just copy the 3.6.7 files back over and wait it out
Andy Huang
Mon 17th Dec '07, 12:55pm
Hm... please check your my.cnf / my.ini for the setting I mentioned above, and give that a try... It should work as it did for dkon26.
Edit:
ah, okay... devvies are testing a new build which should work w/o having to restart mysql and do any edits... I'll make a mental note to post back when that is released :)
Blargh, for multi tabbing and slow typing :/
fpouk
Mon 17th Dec '07, 12:56pm
Hm... please check your my.cnf / my.ini for the setting I mentioned above, and give that a try... It should work as it did for dkon26.
Edit:
ah, okay
Blargh, for multi tabbing and slow typing :/
im using a paid shared host and cant do any of that stuff :cool:
Pottsy
Mon 17th Dec '07, 1:01pm
Thanks - works for me (testing using WAMP for windows).
fpouk
Mon 17th Dec '07, 1:02pm
Thanks - works for me (testing using WAMP for windows).
congrats i cant wait to use 3.7
Wayne Luke
Mon 17th Dec '07, 1:16pm
Redownload your files as this should be fixed now.
fpouk
Mon 17th Dec '07, 1:31pm
thanks Wayne.. doing that now :cool:
fpouk
Mon 17th Dec '07, 1:41pm
Thanks Wayne!
It works now!!
You guys are the best
Andy Huang
Mon 17th Dec '07, 1:42pm
Yay, congrats and welcome to 3.7 Beta :D
Powered by vBulletin™ Version 4.0.2 Copyright © 2010 vBulletin Solutions, Inc. All rights reserved.