diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2008-08-15 01:29:47 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2008-08-15 01:29:47 +0200 |
commit | 370e83bb0dfd0c70de268c93bf07ad5ee0897192 (patch) | |
tree | 491674f4c242e4d6ba0d04eafa305174c35a3391 /config | |
parent | f4debf0f12d0524d2b2427c55ea3f16b680fad97 (diff) |
Update auf 1.13.0
Diffstat (limited to 'config')
-rw-r--r-- | config/index.php | 355 |
1 files changed, 199 insertions, 156 deletions
diff --git a/config/index.php b/config/index.php index 556819df..a0d7f4fb 100644 --- a/config/index.php +++ b/config/index.php @@ -67,11 +67,23 @@ $ourdb['postgres']['compile'] = 'pgsql'; $ourdb['postgres']['bgcolor'] = '#aaccff'; $ourdb['postgres']['rootuser'] = 'postgres'; +$ourdb['sqlite']['fullname'] = 'SQLite'; +$ourdb['sqlite']['havedriver'] = 0; +$ourdb['sqlite']['compile'] = 'pdo_sqlite'; +$ourdb['sqlite']['bgcolor'] = '#b1ebb1'; +$ourdb['sqlite']['rootuser'] = ''; + +$ourdb['mssql']['fullname'] = 'MSSQL'; +$ourdb['mssql']['havedriver'] = 0; +$ourdb['mssql']['compile'] = 'mssql not ready'; # Change to 'mssql' after includes/DatabaseMssql.php added; +$ourdb['mssql']['bgcolor'] = '#ffc0cb'; +$ourdb['mssql']['rootuser'] = 'administrator'; + ?> -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<html> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> - <meta http-equiv="Content-type" content="text/html; charset=utf-8"> + <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> <title>MediaWiki <?php echo( $wgVersion ); ?> Installation</title> <style type="text/css"> @@ -164,15 +176,15 @@ $ourdb['postgres']['rootuser'] = 'postgres'; <!-- function hideall() { <?php foreach (array_keys($ourdb) as $db) { - echo "\n document.getElementById('$db').style.display='none';"; + echo "\n var i = document.getElementById('$db'); if (i) i.style.display='none';"; } ?> } function toggleDBarea(id,defaultroot) { hideall(); - var dbarea = document.getElementById(id).style; - dbarea.display = (dbarea.display == 'none') ? 'block' : 'none'; + var dbarea = document.getElementById(id); + if (dbarea) dbarea.style.display = (dbarea.style.display == 'none') ? 'block' : 'none'; var db = document.getElementById('RootUser'); if (defaultroot) { <?php foreach (array_keys($ourdb) as $db) { @@ -193,19 +205,18 @@ $ourdb['postgres']['rootuser'] = 'postgres'; <h1>MediaWiki <?php print $wgVersion ?> Installation</h1> <?php +$mainListOpened = false; # Is the main list (environement checking) opend ? Used by dieout /* Check for existing configurations and bug out! */ if( file_exists( "../LocalSettings.php" ) ) { $script = defined('MW_INSTALL_PHP5_EXT') ? 'index.php5' : 'index.php'; - dieout( "<p><strong>Setup has completed, <a href='../$script'>your wiki</a> is configured.</strong></p> - - <p>Please delete the /config directory for extra security.</p></div></div></div></div>" ); + dieout( "<p><strong>Setup has completed, <a href='../$script'>your wiki</a> is configured.</strong></p> + <p>Please delete the /config directory for extra security.</p>" ); } if( file_exists( "./LocalSettings.php" ) ) { writeSuccessMessage(); - dieout( '' ); } @@ -281,6 +292,8 @@ class ConfigData { <p><em>Please include all of the lines below when reporting installation problems.</em></p> <ul class="env-check"> <?php +$mainListOpened = true; + $endl = " "; define( 'MW_NO_OUTPUT_BUFFER', 1 ); @@ -310,7 +323,8 @@ if (!$phpdatabases) { print "<li>For <b>$full</b>, compile PHP using <b>--with-$comp</b>, " ."or install the $comp.so module</li>\n"; } - dieout( "</ul></ul>" ); + echo '</ul>'; + dieout( '' ); } print "<li>Found database drivers for:"; @@ -343,7 +357,7 @@ if( wfIniGetBool( "magic_quotes_runtime" ) ) { $fatal = true; ?><li class='error'><strong>Fatal: <a href='http://www.php.net/manual/en/ref.info.php#ini.magic-quotes-runtime'>magic_quotes_runtime</a> is active!</strong> This option corrupts data input unpredictably; you cannot install or use - MediaWiki unless this option is disabled. + MediaWiki unless this option is disabled.</li> <?php } @@ -351,7 +365,7 @@ if( wfIniGetBool( "magic_quotes_sybase" ) ) { $fatal = true; ?><li class='error'><strong>Fatal: <a href='http://www.php.net/manual/en/ref.sybase.php#ini.magic-quotes-sybase'>magic_quotes_sybase</a> is active!</strong> This option corrupts data input unpredictably; you cannot install or use - MediaWiki unless this option is disabled. + MediaWiki unless this option is disabled.</li> <?php } @@ -359,7 +373,7 @@ if( wfIniGetBool( "mbstring.func_overload" ) ) { $fatal = true; ?><li class='error'><strong>Fatal: <a href='http://www.php.net/manual/en/ref.mbstring.php#mbstring.overload'>mbstring.func_overload</a> is active!</strong> This option causes errors and may corrupt data unpredictably; - you cannot install or use MediaWiki unless this option is disabled. + you cannot install or use MediaWiki unless this option is disabled.</li> <?php } @@ -367,13 +381,13 @@ if( wfIniGetBool( "zend.ze1_compatibility_mode" ) ) { $fatal = true; ?><li class="error"><strong>Fatal: <a href="http://www.php.net/manual/en/ini.core.php">zend.ze1_compatibility_mode</a> is active!</strong> This option causes horrible bugs with MediaWiki; you cannot install or use - MediaWiki unless this option is disabled. + MediaWiki unless this option is disabled.</li> <?php } if( $fatal ) { - dieout( "</ul><p>Cannot install MediaWiki.</p>" ); + dieout( "Cannot install MediaWiki." ); } if( wfIniGetBool( "safe_mode" ) ) { @@ -465,11 +479,11 @@ if ( $conf->turck ) { $conf->xcache = function_exists( 'xcache_get' ); if( $conf->xcache ) - print "<li><a href=\"http://trac.lighttpd.net/xcache/\">XCache</a> installed</li>"; + print "<li><a href=\"http://trac.lighttpd.net/xcache/\">XCache</a> installed</li>\n"; $conf->apc = function_exists('apc_fetch'); if ($conf->apc ) { - print "<li><a href=\"http://www.php.net/apc\">APC</a> installed</li>"; + print "<li><a href=\"http://www.php.net/apc\">APC</a> installed</li>\n"; } $conf->eaccel = function_exists( 'eaccelerator_get' ); @@ -571,9 +585,7 @@ print "<li style='font-weight:bold;color:green;font-size:110%'>Environment check : $_SERVER["SERVER_ADMIN"]; $conf->EmergencyContact = importPost( "EmergencyContact", $defaultEmail ); $conf->DBtype = importPost( "DBtype", $DefaultDBtype ); -?> -<?php $conf->DBserver = importPost( "DBserver", "localhost" ); $conf->DBname = importPost( "DBname", "wikidb" ); $conf->DBuser = importPost( "DBuser", "wikiuser" ); @@ -590,13 +602,21 @@ print "<li style='font-weight:bold;color:green;font-size:110%'>Environment check ## MySQL specific: $conf->DBprefix = importPost( "DBprefix" ); $conf->setSchema( - importPost( "DBschema", "mysql4" ), + importPost( "DBschema", "mysql5-binary" ), importPost( "DBengine", "InnoDB" ) ); ## Postgres specific: $conf->DBport = importPost( "DBport", "5432" ); $conf->DBmwschema = importPost( "DBmwschema", "mediawiki" ); $conf->DBts2schema = importPost( "DBts2schema", "public" ); + + ## SQLite specific + $conf->SQLiteDataDir = importPost( "SQLiteDataDir", "" ); + + ## MSSQL specific + // We need a second field so it doesn't overwrite the MySQL one + $conf->DBprefix2 = importPost( "DBprefix2" ); + /* Check for validity */ $errs = array(); @@ -716,13 +736,12 @@ if( $conf->posted && ( 0 == count( $errs ) ) ) { chdir( ".." ); $ok = eval( $local ); if( $ok === false ) { - dieout( "Errors in generated configuration; " . + dieout( "<p>Errors in generated configuration; " . "most likely due to a bug in the installer... " . - "Config file was: " . + "Config file was: </p>" . "<pre>" . htmlspecialchars( $local ) . - "</pre>" . - "</ul>" ); + "</pre>" ); } $conf->DBtypename = ''; foreach (array_keys($ourdb) as $db) { @@ -752,6 +771,11 @@ if( $conf->posted && ( 0 == count( $errs ) ) ) { $wgDBmwschema = $conf->DBmwschema; $wgDBts2schema = $conf->DBts2schema; + if( $conf->DBprefix2 != '' ) { + // For MSSQL + $wgDBprefix = $conf->DBprefix2; + } + $wgCommandLineMode = true; if (! defined ( 'STDERR' ) ) define( 'STDERR', fopen("php://stderr", "wb")); @@ -761,7 +785,7 @@ if( $conf->posted && ( 0 == count( $errs ) ) ) { $wgTitle = Title::newFromText( "Installation script" ); error_reporting( E_ALL ); - print "<li>Loading class: $dbclass"; + print "<li>Loading class: $dbclass</li>\n"; $dbc = new $dbclass; if( $conf->DBtype == 'mysql' ) { @@ -828,11 +852,11 @@ if( $conf->posted && ( 0 == count( $errs ) ) ) { if( !$ok ) { continue; } - } else /* not mysql */ { + } else { # not mysql error_reporting( E_ALL ); $wgSuperUser = ''; ## Possible connect as a superuser - if( $useRoot ) { + if( $useRoot && $conf->DBtype != 'sqlite' ) { $wgDBsuperuser = $conf->RootUser; echo( "<li>Attempting to connect to database \"postgres\" as superuser \"$wgDBsuperuser\"..." ); $wgDatabase = $dbc->newFromParams($wgDBserver, $wgDBsuperuser, $conf->RootPW, "postgres", 1); @@ -852,8 +876,8 @@ if( $conf->posted && ( 0 == count( $errs ) ) ) { } else { $myver = $wgDatabase->getServerVersion(); } - $wgDatabase->initial_setup('', $wgDBname); - } + if (is_callable(array($wgDatabase, 'initial_setup'))) $wgDatabase->initial_setup('', $wgDBname); + } if ( !$wgDatabase->isOpen() ) { $errs["DBserver"] = "Couldn't connect to database"; @@ -863,7 +887,8 @@ if( $conf->posted && ( 0 == count( $errs ) ) ) { print "<li>Connected to $myver"; if ($conf->DBtype == 'mysql') { if( version_compare( $myver, "4.0.14" ) < 0 ) { - dieout( " -- mysql 4.0.14 or later required. Aborting." ); + print "</li>\n"; + dieout( "-- mysql 4.0.14 or later required. Aborting." ); } $mysqlNewAuth = version_compare( $myver, "4.1.0", "ge" ); if( $mysqlNewAuth && $mysqlOldClient ) { @@ -911,7 +936,7 @@ if( $conf->posted && ( 0 == count( $errs ) ) ) { } else if ($conf->DBtype == 'postgres') { if( version_compare( $myver, "PostgreSQL 8.0" ) < 0 ) { - dieout( " <b>Postgres 8.0 or later is required</b>. Aborting.</li></ul>" ); + dieout( "<b>Postgres 8.0 or later is required</b>. Aborting." ); } } @@ -1006,7 +1031,7 @@ if( $conf->posted && ( 0 == count( $errs ) ) ) { if ($conf->DBtype == 'mysql') { dbsource( "../maintenance/tables.sql", $wgDatabase ); dbsource( "../maintenance/interwiki.sql", $wgDatabase ); - } else if ($conf->DBtype == 'postgres') { + } elseif (is_callable(array($wgDatabase, 'setup_database'))) { $wgDatabase->setup_database(); } else { @@ -1088,27 +1113,26 @@ if( $conf->posted && ( 0 == count( $errs ) ) ) { $f = fopen( "LocalSettings.php", 'xt' ); if( $f == false ) { + print( "</li>\n" ); dieout( "<p>Couldn't write out LocalSettings.php. Check that the directory permissions are correct and that there isn't already a file of that name here...</p>\n" . "<p>Here's the file that would have been written, try to paste it into place manually:</p>\n" . "<pre>\n" . htmlspecialchars( $localSettings ) . "</pre>\n" ); } if(fwrite( $f, $localSettings ) ) { fclose( $f ); - print "</li></ul><hr/>\n"; + print "<hr/>\n"; writeSuccessMessage(); + print "</li>\n"; } else { fclose( $f ); - die("<p class='error'>An error occured while writing the config/LocalSettings.php file. Check user rights and disk space then try again.</p>\n"); - print "</li></ul>\n"; + dieout( "<p class='error'>An error occured while writing the config/LocalSettings.php file. Check user rights and disk space then try again.</p></li>\n" ); } } while( false ); } -?> -</ul> - -<?php +print "</ul>\n"; +$mainListOpened = false; if( count( $errs ) ) { /* Display options form */ @@ -1120,39 +1144,30 @@ if( count( $errs ) ) { <form action="<?php echo defined('MW_INSTALL_PHP5_EXT') ? 'index.php5' : 'index.php'; ?>" name="config" method="post"> - <h2>Site config</h2> <div class="config-section"> <div class="config-input"> - <?php - aField( $conf, "Sitename", "Wiki name:" ); - ?> + <?php aField( $conf, "Sitename", "Wiki name:" ); ?> </div> <p class="config-desc"> Preferably a short word without punctuation, i.e. "Wikipedia".<br /> Will appear as the namespace name for "meta" pages, and throughout the interface. </p> - - <div class="config-input"> - <?php - aField( $conf, "EmergencyContact", "Contact e-mail:" ); - ?> - </div> + <div class="config-input"><?php aField( $conf, "EmergencyContact", "Contact e-mail:" ); ?></div> <p class="config-desc"> Displayed to users in some error messages, used as the return address for password reminders, and used as the default sender address of e-mail notifications. </p> <div class="config-input"> <label class='column' for="LanguageCode">Language:</label> - <select id="LanguageCode" name="LanguageCode"> - - <?php + <select id="LanguageCode" name="LanguageCode"><?php $list = getLanguageList(); foreach( $list as $code => $name ) { $sel = ($code == $conf->LanguageCode) ? 'selected="selected"' : ''; - echo "\t\t<option value=\"$code\" $sel>$name</option>\n"; + echo "\n\t\t<option value=\"$code\" $sel>$name</option>"; } + echo "\n"; ?> </select> </div> @@ -1174,15 +1189,14 @@ if( count( $errs ) ) { $icon = urlencode( "$wgServer$wgUploadPath/wiki.png" ); $ccApp = htmlspecialchars( "http://creativecommons.org/license/?partner=$partner&exit_url=$exit&partner_icon_url=$icon" ); print "<a href=\"$ccApp\" target='_blank'>choose</a>"; - ?> - <?php if( $conf->License == "cc" ) { ?> + if( $conf->License == "cc" ) { ?> <ul> - <li><?php aField( $conf, "RightsIcon", "<img src=\"" . htmlspecialchars( $conf->RightsIcon ) . "\" alt='(Creative Commons icon)' />", "hidden" ); ?></li> - <li><?php aField( $conf, "RightsText", htmlspecialchars( $conf->RightsText ), "hidden" ); ?></li> - <li><?php aField( $conf, "RightsCode", "code: " . htmlspecialchars( $conf->RightsCode ), "hidden" ); ?></li> - <li><?php aField( $conf, "RightsUrl", "<a href=\"" . htmlspecialchars( $conf->RightsUrl ) . "\">" . htmlspecialchars( $conf->RightsUrl ) . "</a>", "hidden" ); ?></li> + <li><?php aField( $conf, "RightsIcon", "<img src=\"" . htmlspecialchars( $conf->RightsIcon ) . "\" alt='(Creative Commons icon)' />", "hidden" ); ?></li> + <li><?php aField( $conf, "RightsText", htmlspecialchars( $conf->RightsText ), "hidden" ); ?></li> + <li><?php aField( $conf, "RightsCode", "code: " . htmlspecialchars( $conf->RightsCode ), "hidden" ); ?></li> + <li><?php aField( $conf, "RightsUrl", "<a href=\"" . htmlspecialchars( $conf->RightsUrl ) . "\">" . htmlspecialchars( $conf->RightsUrl ) . "</a>", "hidden" ); ?></li> </ul> - <?php } ?> + <?php } ?> </li> </ul> </div> @@ -1216,22 +1230,22 @@ if( count( $errs ) ) { if ( $conf->turck ) { echo "<li>"; aField( $conf, "Shm", "Turck MMCache", "radio", "turck" ); - echo "</li>"; + echo "</li>\n"; } if( $conf->xcache ) { - echo( '<li>' ); + echo "<li>"; aField( $conf, 'Shm', 'XCache', 'radio', 'xcache' ); - echo( '</li>' ); + echo "</li>\n"; } if ( $conf->apc ) { echo "<li>"; aField( $conf, "Shm", "APC", "radio", "apc" ); - echo "</li>"; + echo "</li>\n"; } if ( $conf->eaccel ) { echo "<li>"; aField( $conf, "Shm", "eAccelerator", "radio", "eaccel" ); - echo "</li>"; + echo "</li>\n"; } if ( $conf->dba ) { echo "<li>"; @@ -1306,7 +1320,7 @@ if( count( $errs ) ) { </div> <div class="config-desc"> <p>If this option is enabled, users have to confirm their e-mail address using a magic link sent to them whenever they set or change it, and only authenticated e-mail addresses can receive mails from other users and/or - change notification mails. Setting this option is <B>recommended</B> for public wikis because of potential abuse of the e-mail features above.</p> + change notification mails. Setting this option is <b>recommended</b> for public wikis because of potential abuse of the e-mail features above.</p> </div> </div> @@ -1315,30 +1329,24 @@ if( count( $errs ) ) { <div class="config-section"> <div class="config-input"> - <label class='column'>Database type:</label> -<?php if (isset($errs['DBpicktype'])) print "<span class='error'>$errs[DBpicktype]</span>\n"; ?> - <ul class='plain'><?php database_picker($conf) ?></ul> + <label class='column'>Database type:</label> +<?php if (isset($errs['DBpicktype'])) print "\t<span class='error'>$errs[DBpicktype]</span>\n"; ?> + <ul class='plain'><?php + database_picker($conf); + ?></ul> </div> - <div class="config-input" style="clear:left"><?php - aField( $conf, "DBserver", "Database host:" ); - ?></div> + <div class="config-input" style="clear:left"> + <?php aField( $conf, "DBserver", "Database host:" ); ?> + </div> <p class="config-desc"> If your database server isn't on your web server, enter the name or IP address here. </p> - <div class="config-input"><?php - aField( $conf, "DBname", "Database name:" ); - ?></div> - <div class="config-input"><?php - aField( $conf, "DBuser", "DB username:" ); - ?></div> - <div class="config-input"><?php - aField( $conf, "DBpassword", "DB password:", "password" ); - ?></div> - <div class="config-input"><?php - aField( $conf, "DBpassword2", "DB password confirm:", "password" ); - ?></div> + <div class="config-input"><?php aField( $conf, "DBname", "Database name:" ); ?></div> + <div class="config-input"><?php aField( $conf, "DBuser", "DB username:" ); ?></div> + <div class="config-input"><?php aField( $conf, "DBpassword", "DB password:", "password" ); ?></div> + <div class="config-input"><?php aField( $conf, "DBpassword2", "DB password confirm:", "password" ); ?></div> <p class="config-desc"> If you only have a single user account and database available, enter those here. If you have database root access (see below) @@ -1349,19 +1357,11 @@ if( count( $errs ) ) { <div class="config-input"> <label class="column">Superuser account:</label> - <input type="checkbox" name="useroot" id="useroot" <?php if( $useRoot ) { ?>checked="checked" <?php } ?>/> + <input type="checkbox" name="useroot" id="useroot" <?php if( $useRoot ) { ?>checked="checked" <?php } ?> /> <label for="useroot">Use superuser account</label> </div> - <div class="config-input"> - <?php - aField( $conf, "RootUser", "Superuser name:", "superuser" ); - ?> - </div> - <div class="config-input"> - <?php - aField( $conf, "RootPW", "Superuser password:", "password" ); - ?> - </div> + <div class="config-input"><?php aField( $conf, "RootUser", "Superuser name:", "text" ); ?></div> + <div class="config-input"><?php aField( $conf, "RootPW", "Superuser password:", "password" ); ?></div> <p class="config-desc"> If the database user specified above does not exist, or does not have access to create @@ -1370,9 +1370,7 @@ if( count( $errs ) ) { </p> <?php database_switcher('mysql'); ?> - <div class="config-input"><?php - aField( $conf, "DBprefix", "Database table prefix:" ); - ?></div> + <div class="config-input"><?php aField( $conf, "DBprefix", "Database table prefix:" ); ?></div> <div class="config-desc"> <p>If you need to share one database between multiple wikis, or between MediaWiki and another web application, you may choose to @@ -1396,33 +1394,57 @@ if( count( $errs ) ) { <div class="config-input"><label class="column">Database character set</label> <div>Select one:</div> <ul class="plain"> - <li><?php aField( $conf, "DBschema", "Backwards-compatible UTF-8", "radio", "mysql4" ); ?></li> - <li><?php aField( $conf, "DBschema", "Experimental MySQL 4.1/5.0 UTF-8", "radio", "mysql5" ); ?></li> - <li><?php aField( $conf, "DBschema", "Experimental MySQL 4.1/5.0 binary", "radio", "mysql5-binary" ); ?></li> + <li><?php aField( $conf, "DBschema", "MySQL 4.1/5.0 binary", "radio", "mysql5-binary" ); ?></li> + <li><?php aField( $conf, "DBschema", "MySQL 4.1/5.0 UTF-8", "radio", "mysql5" ); ?></li> + <li><?php aField( $conf, "DBschema", "MySQL 4.0 backwards-compatible UTF-8", "radio", "mysql4" ); ?></li> </ul> </div> <p class="config-desc"> - <b>EXPERIMENTAL:</b> You can enable explicit Unicode charset support - for MySQL 4.1 and 5.0 servers. This is not well tested and may - cause things to break. <b>If upgrading an older installation, leave - in backwards-compatible mode.</b> + This option is ignored on upgrade, the same character set will be kept. + <br/><br/> + <b>WARNING:</b> If you use <b>backwards-compatible UTF-8</b> on MySQL 4.1+, and subsequently back up the database with <tt>mysqldump</tt>, it may destroy all non-ASCII characters, irreversibly corrupting your backups!. + <br/><br/> + In <b>binary mode</b>, MediaWiki stores UTF-8 text to the database in binary fields. This is more efficient than MySQL's UTF-8 mode, and allows you to use the full range of Unicode characters. In <b>UTF-8 mode</b>, MySQL will know what character set your data is in, and can present and convert it appropriately, but it won't let you store characters above the <a target="_blank" href="http://en.wikipedia.org/wiki/Mapping_of_Unicode_character_planes">Basic Multilingual Plane</a>. </p> - </div> + </fieldset> <?php database_switcher('postgres'); ?> + <div class="config-input"><?php aField( $conf, "DBport", "Database port:" ); ?></div> + <div class="config-input"><?php aField( $conf, "DBmwschema", "Schema for mediawiki:" ); ?></div> + <div class="config-input"><?php aField( $conf, "DBts2schema", "Schema for tsearch2:" ); ?></div> + <div class="config-desc"> + <p>The username specified above (at "DB username") will have its search path set to the above schemas, + so it is recommended that you create a new user. The above schemas are generally correct: + only change them if you are sure you need to.</p> + </div> + </fieldset> + + <?php database_switcher('sqlite'); ?> + <div class="config-desc"> + <b>NOTE:</b> SQLite only uses the <i>Database name</i> setting above, the user, password and root settings are ignored. + </div> <div class="config-input"><?php - aField( $conf, "DBport", "Database port:" ); - ?></div> - <div class="config-input"><?php - aField( $conf, "DBmwschema", "Schema for mediawiki:" ); + aField( $conf, "SQLiteDataDir", "SQLite data directory:" ); ?></div> + <div class="config-desc"> + <p>SQLite stores table data into files in the filesystem. + If you do not provide an explicit path, a "data" directory in + the parent of your document root will be used.</p> + + <p>This directory must exist and be writable by the web server.</p> + </div> + </fieldset> + + <?php database_switcher('mssql'); ?> <div class="config-input"><?php - aField( $conf, "DBts2schema", "Schema for tsearch2:" ); + aField( $conf, "DBprefix2", "Database table prefix:" ); ?></div> <div class="config-desc"> - <p>The username specified above (at "DB username") will have its search path set to the above schemas, - so it is recommended that you create a new user. The above schemas are generally correct: - only change them if you are sure you need to.</p> + <p>If you need to share one database between multiple wikis, or + between MediaWiki and another web application, you may choose to + add a prefix to all the table names to avoid conflicts.</p> + + <p>Avoid exotic characters; something like <tt>mw_</tt> is good.</p> </div> </fieldset> @@ -1430,9 +1452,8 @@ if( count( $errs ) ) { <label class='column'> </label> <input type="submit" value="Install MediaWiki!" class="btn-install" /> </div> - </div> - +</form> <script type="text/javascript"> window.onload = toggleDBarea('<?php echo $conf->DBtype; ?>', <?php @@ -1440,9 +1461,6 @@ window.onload = toggleDBarea('<?php echo $conf->DBtype; ?>', echo strlen(importPost('RootUser', '')) ? 0 : 1; ?>); </script> - -</form> - <?php } @@ -1568,6 +1586,36 @@ function writeLocalSettings( $conf ) { $slconf['RightsIcon'] = $conf->RightsIcon; } + if( $conf->DBtype == 'mysql' ) { + $dbsettings = +"# MySQL specific settings +\$wgDBprefix = \"{$slconf['DBprefix']}\"; + +# MySQL table options to use during installation or update +\$wgDBTableOptions = \"{$slconf['DBTableOptions']}\"; + +# Experimental charset support for MySQL 4.1/5.0. +\$wgDBmysql5 = {$conf->DBmysql5};"; + } elseif( $conf->DBtype == 'postgres' ) { + $dbsettings = +"# Postgres specific settings +\$wgDBport = \"{$slconf['DBport']}\"; +\$wgDBmwschema = \"{$slconf['DBmwschema']}\"; +\$wgDBts2schema = \"{$slconf['DBts2schema']}\";"; + } elseif( $conf->DBtype == 'sqlite' ) { + $dbsettings = +"# SQLite-specific settings +\$wgSQLiteDataDir = \"{$slconf['SQLiteDataDir']}\";"; + } elseif( $conf->DBtype == 'mssql' ) { + $dbsettings = +"# MSSQL specific settings +\$wgDBprefix = \"{$slconf['DBprefix2']}\";"; + } else { + // ummm... :D + $dbsettings = ''; + } + + $localsettings = " # This file was automatically generated by the MediaWiki installer. # If you make manual changes, please keep track in case you need to @@ -1576,6 +1624,9 @@ function writeLocalSettings( $conf ) { # See includes/DefaultSettings.php for all configurable settings # and their default values, but don't forget to make changes in _this_ # file, not there. +# +# Further documentation for configuration settings may be found at: +# http://www.mediawiki.org/wiki/Manual:Configuration_settings # If you customize your file layout, set \$IP to the directory that contains # the other MediaWiki files. It will be used as a base to locate files. @@ -1605,47 +1656,31 @@ if ( \$wgCommandLineMode ) { ## The URL base path to the directory containing the wiki; ## defaults for all runtime URL paths are based off of this. +## For more information on customizing the URLs please see: +## http://www.mediawiki.org/wiki/Manual:Short_URL \$wgScriptPath = \"{$slconf['ScriptPath']}\"; \$wgScriptExtension = \"{$slconf['ScriptExtension']}\"; -## For more information on customizing the URLs please see: -## http://www.mediawiki.org/wiki/Manual:Short_URL +## UPO means: this is also a user preference option \$wgEnableEmail = $enableemail; -\$wgEnableUserEmail = $enableuseremail; +\$wgEnableUserEmail = $enableuseremail; # UPO \$wgEmergencyContact = \"{$slconf['EmergencyContact']}\"; \$wgPasswordSender = \"{$slconf['PasswordSender']}\"; -## For a detailed description of the following switches see -## http://www.mediawiki.org/wiki/Extension:Email_notification -## and http://www.mediawiki.org/wiki/Extension:Email_notification -## There are many more options for fine tuning available see -## /includes/DefaultSettings.php -## UPO means: this is also a user preference option \$wgEnotifUserTalk = $enotifusertalk; # UPO \$wgEnotifWatchlist = $enotifwatchlist; # UPO \$wgEmailAuthentication = $eauthent; +## Database settings \$wgDBtype = \"{$slconf['DBtype']}\"; \$wgDBserver = \"{$slconf['DBserver']}\"; \$wgDBname = \"{$slconf['DBname']}\"; \$wgDBuser = \"{$slconf['DBuser']}\"; \$wgDBpassword = \"{$slconf['DBpassword']}\"; -# MySQL specific settings -\$wgDBprefix = \"{$slconf['DBprefix']}\"; - -# MySQL table options to use during installation or update -\$wgDBTableOptions = \"{$slconf['DBTableOptions']}\"; - -# Experimental charset support for MySQL 4.1/5.0. -\$wgDBmysql5 = {$conf->DBmysql5}; - -# Postgres specific settings -\$wgDBport = \"{$slconf['DBport']}\"; -\$wgDBmwschema = \"{$slconf['DBmwschema']}\"; -\$wgDBts2schema = \"{$slconf['DBts2schema']}\"; +{$dbsettings} ## Shared memory settings \$wgMainCacheType = $cacheType; @@ -1700,7 +1735,14 @@ if ( \$wgCommandLineMode ) { } function dieout( $text ) { - die( $text . "\n\n</body>\n</html>" ); + global $mainListOpened; + if( $mainListOpened ) echo( "</ul>" ); + if( $text != '' && substr( $text, 0, 2 ) != '<p' && substr( $text, 0, 2 ) != '<h' ){ + echo "<p>$text</p>\n"; + } else { + echo $text; + } + die( "\n\n</div>\n</div>\n</div>\n</div>\n</body>\n</html>" ); } function importVar( &$var, $name, $default = "" ) { @@ -1743,10 +1785,8 @@ function aField( &$conf, $field, $text, $type = "text", $value = "", $onclick = if ($type == 'radio') $id .= $radioCount++; - if( $nolabel ) { - echo "\t\t<label>"; - } else { - echo "\t\t<label class='column' for=\"$id\">$text</label>\n"; + if( !$nolabel ) { + echo "<label class='column' for=\"$id\">$text</label>"; } if( $type == "radio" && $value == $conf->$field ) { @@ -1754,7 +1794,7 @@ function aField( &$conf, $field, $text, $type = "text", $value = "", $onclick = } else { $checked = ""; } - echo "\t\t<input $xtype name=\"$field\" id=\"$id\" class=\"iput-$type\" $checked "; + echo "<input $xtype name=\"$field\" id=\"$id\" class=\"iput-$type\" $checked "; if ($onclick) { echo " onclick='toggleDBarea(\"$value\",1)' " ; } @@ -1766,9 +1806,9 @@ function aField( &$conf, $field, $text, $type = "text", $value = "", $onclick = } - echo "\" />\n"; + echo "\" />"; if( $nolabel ) { - echo " $text</label>\n"; + echo "<label for=\"$id\">$text</label>"; } global $errs; @@ -1875,12 +1915,12 @@ function database_picker($conf) { print "\n"; foreach(array_keys($ourdb) as $db) { if ($ourdb[$db]['havedriver']) { - print "<li>"; + print "\t<li>"; aField( $conf, "DBtype", $ourdb[$db]['fullname'], 'radio', $db, 'onclick'); print "</li>\n"; } } - print "\n"; + print "\n\t"; } function database_switcher($db) { @@ -1897,7 +1937,7 @@ function printListItem( $item ) { ?> <div class="license"> - <hr> + <hr/> <p>This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or @@ -1930,10 +1970,13 @@ function printListItem( $item ) { <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> + <li><a href="http://www.mediawiki.org/wiki/Help:Contents">User's Guide</a></li> + <li><a href="http://www.mediawiki.org/wiki/Manual:Contents">Administrator's Guide</a></li> + <li><a href="http://www.mediawiki.org/wiki/Manual:FAQ">FAQ</a></li> </ul> - <p style="font-size:90%;margin-top:1em">MediaWiki is Copyright © 2001-2008 by Magnus Manske, Brion Vibber, Lee Daniel Crocker, Tim Starling, Erik Möller, Gabriel Wicke and others.</p> + <p style="font-size:90%;margin-top:1em">MediaWiki is Copyright © 2001-2008 by Magnus Manske, Brion Vibber, + Lee Daniel Crocker, Tim Starling, Erik Möller, Gabriel Wicke, Ævar Arnfjörð Bjarmason, Niklas Laxström, + Domas Mituzas, Rob Church, Yuri Astrakhan, Aryeh Gregor, Aaron Schulz and others.</p> </div></div> </div> |