01-31-2007, 04:35 AM
|
|
|
Join Date: Jun 2006
Posts: 39
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by zetetic
The regular install is much easier. Only use the alternate if the regular fails.
As of today (version 0.10.2b), the XML file has not been updated.
Before you attempt to install this product, you should open the product-spellvb.xml file and...
find:
HTML Code:
// Create vB Spell Table
$db->query_write("CREATE TABLE IF NOT EXISTS vbspell (
word varchar(30) NOT NULL,
sound varchar(10) NOT NULL,
UNIQUE KEY word (word),
KEY sound (sound)
) TYPE=MyISAM");
// Remove Old vB Spell Table
$db->query_write("DROP TABLE IF EXISTS " . TABLE_PREFIX . "vbspell");
and replace with:
HTML Code:
// Remove Old vB Spell Table
$db->query_write("DROP TABLE IF EXISTS " . TABLE_PREFIX . "vbspell");
// Create vB Spell Table
$db->query_write("CREATE TABLE IF NOT EXISTS vbspell (
word varchar(30) NOT NULL,
sound varchar(10) NOT NULL,
UNIQUE KEY word (word),
KEY sound (sound)
) TYPE=MyISAM");
Otherwise it will drop the vbspell table right after it creates it, before importing the dictionary!
|
That should be bumped to the first post in this thread. After a few pages, we new installers try all the junk that is reccomended post by post. Was just about to toss this laptop out the sunroof when I read this one. THanks!!!
|