00001 <?php 00002 00003 # Rebuild link tracking tables from scratch. This takes several 00004 # hours, depending on the database size and server configuration. 00005 00006 require_once( "commandLine.inc" ); 00007 require_once( "./rebuildrecentchanges.inc" ); 00008 $wgTitle = Title::newFromText( "Rebuild recent changes script" ); 00009 00010 $wgDBuser = $wgDBadminuser; 00011 $wgDBpassword = $wgDBadminpassword; 00012 00013 rebuildRecentChangesTablePass1(); 00014 rebuildRecentChangesTablePass2(); 00015 00016 print "Done.\n"; 00017 exit(); 00018 00019 ?>