2004-02-18 02:15:00 +00:00
|
|
|
<?php
|
2003-11-20 03:11:42 +00:00
|
|
|
|
|
|
|
|
function install_version_checks() {
|
2004-08-18 05:45:25 +00:00
|
|
|
# We dare not turn output buffer _off_ since this will break completely
|
|
|
|
|
# if PHP is globally configured to run through a gzip filter.
|
|
|
|
|
@ob_implicit_flush( true );
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2005-01-31 20:35:47 +00:00
|
|
|
if( !function_exists( 'version_compare' ) ) {
|
2003-11-20 03:11:42 +00:00
|
|
|
# version_compare was introduced in 4.1.0
|
2006-01-14 02:49:43 +00:00
|
|
|
echo "Your PHP version is much too old; 4.0.x will _not_ work. 4.3.2 or higher is required. ABORTING.\n";
|
|
|
|
|
die( -1 );
|
2003-11-20 03:11:42 +00:00
|
|
|
}
|
2005-01-31 20:35:47 +00:00
|
|
|
if( version_compare( phpversion(), '4.3.2' ) < 0 ) {
|
2006-01-14 02:49:43 +00:00
|
|
|
echo "PHP 4.3.2 or higher is required. ABORTING.\n";
|
|
|
|
|
die( -1 );
|
2003-11-20 03:11:42 +00:00
|
|
|
}
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2006-04-12 08:15:28 +00:00
|
|
|
$gotdatabase = 0;
|
|
|
|
|
## XXX We should quiet the warnings thrown here
|
2006-04-14 20:58:25 +00:00
|
|
|
if (extension_loaded('mysql') or @dl('mysql.so')) {
|
2006-04-12 08:15:28 +00:00
|
|
|
$gotdatabase = 'mysql';
|
|
|
|
|
}
|
2006-04-14 20:58:25 +00:00
|
|
|
else if (extension_loaded('pgsql') or @dl('pgsql.so')) {
|
2006-04-12 08:15:28 +00:00
|
|
|
$gotdatabase = 'pg';
|
|
|
|
|
}
|
|
|
|
|
if (!$gotdatabase) {
|
2006-04-14 20:58:25 +00:00
|
|
|
global $wgCommandLineMode;
|
|
|
|
|
|
|
|
|
|
$error ="Could not load the MySQL or the PostgreSQL driver! Please compile ".
|
|
|
|
|
"php with either --with-mysql or --with-pgsql, or install the mysql.so or pg.so module.<br/>\n".
|
|
|
|
|
" If the database extension is installed (eg php-mysql), make sure it is enabled in your php.ini.\n";
|
|
|
|
|
if( $wgCommandLineMode ) { print $error; }
|
|
|
|
|
else { outputFooter($error); }
|
2003-11-20 03:11:42 +00:00
|
|
|
exit;
|
|
|
|
|
}
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2003-11-20 03:11:42 +00:00
|
|
|
global $wgCommandLineMode;
|
|
|
|
|
$wgCommandLineMode = true;
|
|
|
|
|
umask( 000 );
|
|
|
|
|
set_time_limit( 0 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function copyfile( $sdir, $name, $ddir, $perms = 0664 ) {
|
2004-02-27 03:59:21 +00:00
|
|
|
copyfileto( $sdir, $name, $ddir, $name, $perms );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function copyfileto( $sdir, $sname, $ddir, $dname, $perms = 0664 ) {
|
2003-11-20 03:11:42 +00:00
|
|
|
global $wgInstallOwner, $wgInstallGroup;
|
|
|
|
|
|
2004-02-27 03:59:21 +00:00
|
|
|
$d = "{$ddir}/{$dname}";
|
|
|
|
|
if ( copy( "{$sdir}/{$sname}", $d ) ) {
|
2003-11-20 03:11:42 +00:00
|
|
|
if ( isset( $wgInstallOwner ) ) { chown( $d, $wgInstallOwner ); }
|
|
|
|
|
if ( isset( $wgInstallGroup ) ) { chgrp( $d, $wgInstallGroup ); }
|
|
|
|
|
chmod( $d, $perms );
|
2004-02-27 03:59:21 +00:00
|
|
|
# print "Copied \"{$sname}\" to \"{$d}\".\n";
|
2003-11-20 03:11:42 +00:00
|
|
|
} else {
|
2004-02-27 03:59:21 +00:00
|
|
|
print "Failed to copy file \"{$sname}\" to \"{$ddir}/{$dname}\".\n";
|
2003-11-20 03:11:42 +00:00
|
|
|
exit();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function copydirectory( $source, $dest ) {
|
|
|
|
|
$handle = opendir( $source );
|
|
|
|
|
while ( false !== ( $f = readdir( $handle ) ) ) {
|
2003-11-22 12:30:13 +00:00
|
|
|
$fullname = "$source/$f";
|
2005-01-31 20:35:47 +00:00
|
|
|
if ( $f{0} != '.' && is_file( $fullname ) ) {
|
2003-11-22 12:30:13 +00:00
|
|
|
copyfile( $source, $f, $dest );
|
|
|
|
|
}
|
2003-11-20 03:11:42 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2005-01-31 20:35:47 +00:00
|
|
|
function readconsole( $prompt = '' ) {
|
2005-11-01 00:57:13 +00:00
|
|
|
static $isatty = null, $fp = null;
|
|
|
|
|
if ( is_null( $fp ) ) {
|
|
|
|
|
$fp = fopen( 'php://stdin', 'r' );
|
|
|
|
|
}
|
|
|
|
|
if ( is_null( $isatty ) ) {
|
|
|
|
|
if ( !function_exists( 'posix_isatty' ) || posix_isatty( $fp ) ) {
|
|
|
|
|
$isatty = true;
|
|
|
|
|
} else {
|
|
|
|
|
$isatty = false;
|
|
|
|
|
}
|
2005-09-08 08:49:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $isatty && function_exists( 'readline' ) ) {
|
2004-06-13 04:18:09 +00:00
|
|
|
return readline( $prompt );
|
|
|
|
|
} else {
|
2005-09-08 08:49:04 +00:00
|
|
|
if ( $isatty ) {
|
|
|
|
|
print $prompt;
|
|
|
|
|
}
|
2005-11-01 00:57:13 +00:00
|
|
|
if ( feof( $fp ) ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2005-07-07 02:29:55 +00:00
|
|
|
$st = fgets($fp, 1024);
|
|
|
|
|
if ($st === false) return false;
|
2005-07-07 02:31:03 +00:00
|
|
|
$resp = trim( $st );
|
2004-06-13 04:18:09 +00:00
|
|
|
return $resp;
|
|
|
|
|
}
|
2003-11-20 03:11:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# Read and execute SQL commands from a file
|
|
|
|
|
#
|
2006-01-17 11:48:18 +00:00
|
|
|
function dbsource( $fname, $db = false ) {
|
|
|
|
|
if ( !$db ) {
|
|
|
|
|
// Try $wgDatabase, which is used in the install and update scripts
|
|
|
|
|
global $wgDatabase;
|
|
|
|
|
if ( isset( $wgDatabase ) ) {
|
|
|
|
|
$db =& $wgDatabase;
|
|
|
|
|
} else {
|
|
|
|
|
// No? Well, we must be outside of those scripts, so use the standard method
|
|
|
|
|
$db =& wfGetDB( DB_MASTER );
|
2003-11-20 03:11:42 +00:00
|
|
|
}
|
|
|
|
|
}
|
2006-01-17 11:48:18 +00:00
|
|
|
$error = $db->sourceFile( $fname );
|
|
|
|
|
if ( $error !== true ) {
|
|
|
|
|
print $error;
|
|
|
|
|
exit(1);
|
|
|
|
|
}
|
2003-11-20 03:11:42 +00:00
|
|
|
}
|
|
|
|
|
|
2004-01-17 05:49:39 +00:00
|
|
|
# Obsolete, use Database::fieldExists()
|
2003-11-20 03:11:42 +00:00
|
|
|
function field_exists( $table, $field ) {
|
2005-01-31 20:35:47 +00:00
|
|
|
$fname = 'Update script: field_exists';
|
2004-07-18 08:48:43 +00:00
|
|
|
$db =& wfGetDB( DB_SLAVE );
|
2004-07-10 03:09:26 +00:00
|
|
|
$res = $db->query( "DESCRIBE $table", $fname );
|
2003-11-20 03:11:42 +00:00
|
|
|
$found = false;
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2004-07-18 08:48:43 +00:00
|
|
|
while ( $row = $db->fetchObject( $res ) ) {
|
2003-11-20 03:11:42 +00:00
|
|
|
if ( $row->Field == $field ) {
|
|
|
|
|
$found = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return $found;
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-17 05:49:39 +00:00
|
|
|
# Obsolete Database::tableExists()
|
2003-11-20 03:11:42 +00:00
|
|
|
function table_exists( $db ) {
|
|
|
|
|
global $wgDBname;
|
|
|
|
|
$res = mysql_list_tables( $wgDBname );
|
|
|
|
|
if( !$res ) {
|
|
|
|
|
echo "** " . mysql_error() . "\n";
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
for( $i = mysql_num_rows( $res ) - 1; $i--; $i > 0 ) {
|
|
|
|
|
if( mysql_tablename( $res, $i ) == $db ) return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-17 05:49:39 +00:00
|
|
|
# Obsolete, use Database:fieldInfo()
|
2003-11-20 03:11:42 +00:00
|
|
|
function field_info( $table, $field ) {
|
|
|
|
|
$res = mysql_query( "SELECT * FROM $table LIMIT 1" );
|
|
|
|
|
$n = mysql_num_fields( $res );
|
|
|
|
|
for( $i = 0; $i < $n; $i++ ) {
|
|
|
|
|
$meta = mysql_fetch_field( $res, $i );
|
|
|
|
|
if( $field == $meta->name ) {
|
|
|
|
|
return $meta;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2006-04-14 20:58:25 +00:00
|
|
|
/**
|
|
|
|
|
* Used to end the HTML stream when we die out
|
|
|
|
|
*/
|
|
|
|
|
function outputFooter( $text ) {
|
|
|
|
|
print $text;
|
|
|
|
|
print <<<END
|
|
|
|
|
</div></div></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div id="column-one">
|
|
|
|
|
<div class="portlet" id="p-logo">
|
|
|
|
|
<a style="background-image: url(../skins/common/images/mediawiki.png);"
|
|
|
|
|
href="http://www.mediawiki.org/"
|
|
|
|
|
title="Main Page"></a>
|
|
|
|
|
</div>
|
|
|
|
|
<script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script>
|
|
|
|
|
<div class='portlet'><div class='pBody'>
|
|
|
|
|
<ul>
|
|
|
|
|
<li><strong><a href="http://www.mediawiki.org/">MediaWiki home</a></strong></li>
|
|
|
|
|
<li><a href="../README">Readme</a></li>
|
|
|
|
|
<li><a href="../RELEASE-NOTES">Release notes</a></li>
|
|
|
|
|
<li><a href="../docs/">Documentation</a></li>
|
|
|
|
|
<li><a href="http://meta.wikipedia.org/wiki/MediaWiki_User's_Guide">User's Guide</a></li>
|
|
|
|
|
<li><a href="http://meta.wikimedia.org/wiki/MediaWiki_FAQ">FAQ</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
<p style="font-size:90%;margin-top:1em">MediaWiki is Copyright © 2001-2006 by Magnus Manske, Brion Vibber, Lee Daniel Crocker, Tim Starling, Erik Möller, Gabriel Wicke and others.</p>
|
|
|
|
|
</div></div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
|
|
|
|
|
END;
|
|
|
|
|
|
|
|
|
|
}
|
2003-11-20 03:11:42 +00:00
|
|
|
?>
|