Quote:
Originally Posted by Loukrhtia
Maybe I could somehow import the dicitonary in parts?
|
Not a bad idea.
After the first import portion, you need to remove or comment out the code the deletes the vbspell table.
Find this in the install script:
PHP Code:
$query['new'][] = "DROP TABLE IF EXISTS vbspell";
$query['new'][] = "CREATE TABLE " . TABLE_PREFIX . "vbspell (
word varchar(30) NOT NULL,
sound varchar(10) NOT NULL,
UNIQUE KEY word (word),
KEY sound (sound)
) TYPE=MyISAM";
Replace with this:
PHP Code:
/*
$query['new'][] = "DROP TABLE IF EXISTS vbspell";
$query['new'][] = "CREATE TABLE " . TABLE_PREFIX . "vbspell (
word varchar(30) NOT NULL,
sound varchar(10) NOT NULL,
UNIQUE KEY word (word),
KEY sound (sound)
) TYPE=MyISAM";
*/
And just run the dictionary step.