wiki.techinc.nl/maintenance/rebuildrecentchanges.php

26 lines
539 B
PHP
Raw Normal View History

<?php
/**
* Rebuild link tracking tables from scratch. This takes several
* hours, depending on the database size and server configuration.
*
* @todo document
* @package MediaWiki
* @subpackage Maintenance
*/
/** */
require_once( "commandLine.inc" );
2004-05-07 13:43:10 +00:00
require_once( "./rebuildrecentchanges.inc" );
$wgTitle = Title::newFromText( "Rebuild recent changes script" );
$wgDBuser = $wgDBadminuser;
$wgDBpassword = $wgDBadminpassword;
rebuildRecentChangesTablePass1();
rebuildRecentChangesTablePass2();
print "Done.\n";
exit();
?>