trackbacks table for oracle
[lhc/web/wiklou.git] / maintenance / update.php
1 <?php
2 /**
3 * Run all updaters.
4 *
5 * @todo document
6 * @package MediaWiki
7 * @subpackage Maintenance
8 */
9
10 /** */
11 $options = array( 'quick' );
12 require_once( "commandLine.inc" );
13 require_once( "updaters.inc" );
14 $wgTitle = Title::newFromText( "MediaWiki database updater" );
15 $dbclass = 'Database'.ucfirst($wgDBtype);
16 require_once("$dbclass.php");
17 $dbc = new $dbclass;
18 $wgDatabase = $dbc->newFromParams( $wgDBserver, $wgDBadminuser, $wgDBadminpassword, $wgDBname );
19
20 print "Going to run database updates for $wgDBname\n";
21 print "Depending on the size of your database this may take a while!\n";
22
23 if( !isset( $options['quick'] ) ) {
24 print "Abort with control-c in the next five seconds... ";
25
26 for ($i = 5; $i >= 0; --$i) {
27 echo $i;
28 sleep(1);
29 echo( ($i == 0) ? "\n" : chr(8) );
30 }
31 }
32
33 do_all_updates();
34
35 print "Done.\n";
36
37 ?>