simple script to generate phpdocumentor documentation and troubleshoot its generation
[mediawiki.git] / maintenance / rebuildlinks.php
blob3a004f68ad540c12650b18cb1dfea63c6d31bede
1 <?php
2 /**
3 * Rebuild link tracking tables from scratch. This takes several
4 * hours, depending on the database size and server configuration.
6 * @todo document
7 * @package MediaWiki
8 * @subpackage Maintenance
9 */
10 /** */
11 require_once( "commandLine.inc" );
12 require_once( "./rebuildlinks.inc" );
14 $wgTitle = Title::newFromText( "Rebuild links script" );
16 $wgDBuser = $wgDBadminuser;
17 $wgDBpassword = $wgDBadminpassword;
19 rebuildLinkTables();
21 print "Done.\n";
22 exit();