blob: 247fedc523b453dedec04d44f71093c507e33d25 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
# Rebuild search index table from scratch. This takes several
# hours, depending on the database size and server configuration.
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();
?>
|