Fix some of the rebuild scripts
authorBrion Vibber <brion@users.mediawiki.org>
Wed, 11 Aug 2004 09:02:20 +0000 (09:02 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Wed, 11 Aug 2004 09:02:20 +0000 (09:02 +0000)
maintenance/rebuildall.php
maintenance/rebuildrecentchanges.inc
maintenance/refreshLinks.inc

index d9ec307..670f560 100644 (file)
@@ -10,21 +10,23 @@ require_once( "refreshlinks.inc" );
 require_once( "rebuildtextindex.inc" );
 require_once( "rebuildrecentchanges.inc" );
 
-$wgDBuser                      = $wgDBadminuser;
-$wgDBpassword          = $wgDBadminpassword;
+$database = Database::newFromParams( $wgDBserver, $wgDBadminuser, $wgDBadminpassword, $wgDBname );
+
+print "** Rebuilding fulltext search index (if you abort this will break searching; run this script again to fix):\n";
+dropTextIndex( $database );
+rebuildTextIndex( $database );
+createTextIndex( $database );
+
+print "\n\n** Rebuilding recentchanges table:\n";
+rebuildRecentChangesTablePass1();
+rebuildRecentChangesTablePass2();
 
 # Doesn't work anymore
 # rebuildLinkTables();
 
 # Use the slow incomplete one instead. It's designed to work in the background
-#refreshLinks( 1 );
-
-dropTextIndex();
-rebuildTextIndex();
-createTextIndex();
-
-rebuildRecentChangesTablePass1();
-rebuildRecentChangesTablePass2();
+print "\n\n** Rebuilding links tables -- this can take a long time. It should be safe to about via ctrl+C if you get bored.\n";
+refreshLinks( 1 );
 
 print "Done.\n";
 exit();
index f4d739e..8d10f56 100644 (file)
@@ -7,7 +7,7 @@ function rebuildRecentChangesTablePass1()
 {
        $fname = 'rebuildRecentChangesTablePass1';
        $dbw =& wfGetDB( DB_MASTER );
-       extract( $dbw->tableNames( 'recentchanges', 'cur', 'old' );
+       extract( $dbw->tableNames( 'recentchanges', 'cur', 'old' ) );
 
        $dbw->delete( 'recentchanges', '*' );
 
@@ -29,7 +29,7 @@ function rebuildRecentChangesTablePass1()
                        'rc_this_oldid' => 0,
                        'rc_last_oldid' => 0,
                        'rc_type' => 'IF(cur_is_new,' . RC_NEW . ',' . RC_EDIT . ')'
-               ), '*', $fname, array( 'ORDER BY' => 'inverse_timestamp', 'LIMIT' => 5000 
+               ), '*', $fname, array( 'ORDER BY' => 'inverse_timestamp', 'LIMIT' => 5000 )
        );
        
        print( "Loading from OLD table...\n" );
@@ -56,7 +56,7 @@ function rebuildRecentChangesTablePass1()
 function rebuildRecentChangesTablePass2()
 {
        $dbw =& wfGetDB( DB_MASTER );
-       extract( $dbw->tableNames( 'recentchanges', 'cur', 'old' );
+       extract( $dbw->tableNames( 'recentchanges', 'cur', 'old' ) );
 
        $ns = $id = $count = 0;
        $title = $ct =  "";
index 5a18a16..2261803 100644 (file)
@@ -8,7 +8,7 @@ function refreshLinks( $start ) {
 
        $dbw =& wfGetDB( DB_MASTER );
        
-       $end = $dbw->selectField( 'cur_id', 'max(cur_id)', false );
+       $end = $dbw->selectField( 'cur', 'max(cur_id)', false );
 
        print("Refreshing link table. Starting from cur_id $start of $end.\n");