Index: trunk/phpwiki/newcodebase/maintenance/buildTables.inc |
— | — | @@ -23,6 +23,9 @@ |
24 | 24 | ) TYPE=MyISAM PACK_KEYS=1"; |
25 | 25 | wfQuery( $sql ); |
26 | 26 | |
| 27 | + $sql = "DROP TABLE IF EXISTS user_newtalk"; |
| 28 | + wfQuery( $sql ); |
| 29 | + |
27 | 30 | $sql ="CREATE TABLE user_newtalk ( |
28 | 31 | user_id int(5) NOT NULL default '0', |
29 | 32 | user_ip varchar(40) NOT NULL default '', |
Index: trunk/phpwiki/newcodebase/INSTALL |
— | — | @@ -21,6 +21,8 @@ |
22 | 22 | Use either "createdb.php" or "convertdb.php" from the |
23 | 23 | maintenance directory to initialize the database, but not |
24 | 24 | both (use "convertdb.php" only if upgrading from Phase II). |
| 25 | +You must also run "rebuildindexes.php" to build the search |
| 26 | +index tables. |
25 | 27 | |
26 | 28 | Edit LocalSettings.php to reflect local installation paths |
27 | 29 | and such. |