* Moved content from liveCmdLine.inc into commandLine.inc, obsoleting the former.
[lhc/web/wiklou.git] / maintenance / rebuildtextindex.php
1 <?php
2 # Rebuild search index table from scratch. This takes several
3 # hours, depending on the database size and server configuration.
4
5 require_once( "commandLine.inc" );
6 require_once( "./rebuildtextindex.inc" );
7 $wgTitle = Title::newFromText( "Rebuild text index script" );
8
9 $wgDBuser = $wgDBadminuser;
10 $wgDBpassword = $wgDBadminpassword;
11
12 dropTextIndex();
13 rebuildTextIndex();
14 createTextIndex();
15
16 print "Done.\n";
17 exit();
18
19 ?>