diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2006-10-11 20:21:25 +0000 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2006-10-11 20:21:25 +0000 |
commit | d81f562b712f2387fa02290bf2ca86392ab356f2 (patch) | |
tree | d666cdefbe6ac320827a2c6cb473581b46e22c4c /maintenance/addwiki.php | |
parent | 183851b06bd6c52f3cae5375f433da720d410447 (diff) |
Aktualisierung auf Version 1.8.1
Diffstat (limited to 'maintenance/addwiki.php')
-rw-r--r-- | maintenance/addwiki.php | 56 |
1 files changed, 40 insertions, 16 deletions
diff --git a/maintenance/addwiki.php b/maintenance/addwiki.php index 253033a3..b7843632 100644 --- a/maintenance/addwiki.php +++ b/maintenance/addwiki.php @@ -33,26 +33,40 @@ function addWiki( $lang, $site, $dbName ) print "Initialising tables\n"; dbsource( "$maintenance/tables.sql", $dbw ); dbsource( "$IP/extensions/OAI/update_table.sql", $dbw ); + dbsource( "$IP/extensions/AntiSpoof/mysql/patch-antispoof.sql", $dbw ); $dbw->query( "INSERT INTO site_stats(ss_row_id) VALUES (1)" ); # Initialise external storage - if ( $wgDefaultExternalStore && preg_match( '!^DB://(.*)$!', $wgDefaultExternalStore, $m ) ) { - print "Initialising external storage...\n"; + if ( is_array( $wgDefaultExternalStore ) ) { + $stores = $wgDefaultExternalStore; + } elseif ( $stores ) { + $stores = array( $wgDefaultExternalStore ); + } else { + $stores = array(); + } + if ( count( $stores ) ) { require_once( 'ExternalStoreDB.php' ); + print "Initialising external storage $store...\n"; global $wgDBuser, $wgDBpassword, $wgExternalServers; - $cluster = $m[1]; - - # Hack - $wgExternalServers[$cluster][0]['user'] = $wgDBuser; - $wgExternalServers[$cluster][0]['password'] = $wgDBpassword; - - $store = new ExternalStoreDB; - $extdb =& $store->getMaster( $cluster ); - $extdb->query( "SET table_type=InnoDB" ); - $extdb->query( "CREATE DATABASE $dbName" ); - $extdb->selectDB( $dbName ); - dbsource( "$maintenance/storage/blobs.sql", $extdb ); - $extdb->immediateCommit(); + foreach ( $stores as $storeURL ) { + if ( !preg_match( '!^DB://(.*)$!', $storeURL, $m ) ) { + continue; + } + + $cluster = $m[1]; + + # Hack + $wgExternalServers[$cluster][0]['user'] = $wgDBuser; + $wgExternalServers[$cluster][0]['password'] = $wgDBpassword; + + $store = new ExternalStoreDB; + $extdb =& $store->getMaster( $cluster ); + $extdb->query( "SET table_type=InnoDB" ); + $extdb->query( "CREATE DATABASE $dbName" ); + $extdb->selectDB( $dbName ); + dbsource( "$maintenance/storage/blobs.sql", $extdb ); + $extdb->immediateCommit(); + } } $wgTitle = Title::newMainPage(); @@ -203,7 +217,17 @@ See the [http://www.wikipedia.org Wikipedia portal] for other language Wikipedia fclose( $file ); print "Sourcing interwiki SQL\n"; dbsource( $tempname, $dbw ); - unlink( $tempname ); + #unlink( $tempname ); + + # Create the upload dir + global $wgUploadDirectory; + if( file_exists( $wgUploadDirectory ) ) { + echo "$wgUploadDirectory already exists.\n"; + } else { + echo "Creating $wgUploadDirectory...\n"; + mkdir( $wgUploadDirectory, 0777 ); + chmod( $wgUploadDirectory, 0777 ); + } print "Script ended. You now want to run sync-common-all to publish *dblist files (check them for duplicates first)\n"; } |