34 lines
887 B
PHP
34 lines
887 B
PHP
<?
|
|
|
|
# Rebuild link tracking tables from scratch. This takes several
|
|
# hours, depending on the database size and server configuration.
|
|
|
|
if ( ! is_readable( "../LocalSettings.php" ) ) {
|
|
print "A copy of your installation's LocalSettings.php\n" .
|
|
"must exist in the source directory.\n";
|
|
exit();
|
|
}
|
|
|
|
$wgCommandLineMode = true;
|
|
$DP = "../includes";
|
|
include_once( "../LocalSettings.php" );
|
|
include_once( "../AdminSettings.php" );
|
|
|
|
$sep = strchr( $include_path = ini_get( "include_path" ), ";" ) ? ";" : ":";
|
|
ini_set( "include_path", "$IP$sep$include_path" );
|
|
|
|
include_once( "Setup.php" );
|
|
include_once( "./rebuildrecentchanges.inc" );
|
|
$wgTitle = Title::newFromText( "Rebuild recent changes script" );
|
|
set_time_limit(0);
|
|
|
|
$wgDBuser = $wgDBadminuser;
|
|
$wgDBpassword = $wgDBadminpassword;
|
|
|
|
rebuildRecentChangesTablePass1();
|
|
rebuildRecentChangesTablePass2();
|
|
|
|
print "Done.\n";
|
|
exit();
|
|
|
|
?>
|