blob: 6f31cbb6b53c1c356282c5a655552579f3f855db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php
/**
* Rebuild search index table from scratch. This takes several
* hours, depending on the database size and server configuration.
*
* @todo document
* @addtogroup Maintenance
*/
/** */
require_once( "commandLine.inc" );
require_once( "rebuildtextindex.inc" );
$wgTitle = Title::newFromText( "Rebuild text index script" );
$database = Database::newFromParams( $wgDBserver, $wgDBadminuser, $wgDBadminpassword, $wgDBname );
dropTextIndex( $database );
rebuildTextIndex( $database );
createTextIndex( $database );
print "Done.\n";
exit();
?>
|