Clarify that wgDBport is not for mysql, make explicit sections.
[lhc/web/wiklou.git] / config / index.php
1 <?php
2
3 # MediaWiki web-based config/installation
4 # Copyright (C) 2004 Brion Vibber <brion@pobox.com>, 2006 Rob Church <robchur@gmail.com>
5 # http://www.mediawiki.org/
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along
18 # with this program; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 # http://www.gnu.org/copyleft/gpl.html
21
22 error_reporting( E_ALL );
23 header( "Content-type: text/html; charset=utf-8" );
24 @ini_set( "display_errors", true );
25
26 # In case of errors, let output be clean.
27 $wgRequestTime = microtime( true );
28
29 # Attempt to set up the include path, to fix problems with relative includes
30 $IP = dirname( dirname( __FILE__ ) );
31 define( 'MW_INSTALL_PATH', $IP );
32 $sep = PATH_SEPARATOR;
33 if( !ini_set( "include_path", ".$sep$IP$sep$IP/includes$sep$IP/languages" ) ) {
34 set_include_path( ".$sep$IP$sep$IP/includes$sep$IP/languages" );
35 }
36
37 # Define an entry point and include some files
38 define( "MEDIAWIKI", true );
39 define( "MEDIAWIKI_INSTALL", true );
40
41 // Run version checks before including other files
42 // so people don't see a scary parse error.
43 require_once( "install-utils.inc" );
44 install_version_checks();
45
46 require_once( "includes/Defines.php" );
47 require_once( "includes/DefaultSettings.php" );
48 require_once( "includes/MagicWord.php" );
49 require_once( "includes/Namespace.php" );
50 require_once( "includes/ProfilerStub.php" );
51
52 ## Databases we support:
53
54 $ourdb = array();
55 $ourdb['mysql']['fullname'] = 'MySQL';
56 $ourdb['mysql']['havedriver'] = 0;
57 $ourdb['mysql']['compile'] = 'mysql';
58 $ourdb['mysql']['bgcolor'] = '#ffe5a7';
59 $ourdb['mysql']['rootuser'] = 'root';
60
61 $ourdb['postgres']['fullname'] = 'PostgreSQL';
62 $ourdb['postgres']['havedriver'] = 0;
63 $ourdb['postgres']['compile'] = 'pgsql';
64 $ourdb['postgres']['bgcolor'] = '#aaccff';
65 $ourdb['postgres']['rootuser'] = 'postgres';
66
67 ?>
68 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
69 <html>
70 <head>
71 <meta http-equiv="Content-type" content="text/html; charset=utf-8">
72 <title>MediaWiki <?php echo( $wgVersion ); ?> Installation</title>
73 <style type="text/css">
74
75 @import "../skins/monobook/main.css";
76
77 .env-check {
78 font-size: 90%;
79 margin: 1em 0 1em 2.5em;
80 }
81
82 .config-section {
83 margin-top: 2em;
84 }
85
86 .config-section label.column {
87 clear: left;
88 font-weight: bold;
89 width: 13em;
90 float: left;
91 text-align: right;
92 padding-right: 1em;
93 padding-top: .2em;
94 }
95
96 .config-input {
97 clear: left;
98 zoom: 100%; /* IE hack */
99 }
100
101 .config-section .config-desc {
102 clear: left;
103 margin: 0 0 2em 18em;
104 padding-top: 1em;
105 font-size: 85%;
106 }
107
108 .iput-text, .iput-password {
109 width: 14em;
110 margin-right: 1em;
111 }
112
113 .error {
114 color: red;
115 background-color: #fff;
116 font-weight: bold;
117 left: 1em;
118 font-size: 100%;
119 }
120
121 .error-top {
122 color: red;
123 background-color: #FFF0F0;
124 border: 2px solid red;
125 font-size: 130%;
126 font-weight: bold;
127 padding: 1em 1.5em;
128 margin: 2em 0 1em;
129 }
130
131 ul.plain {
132 list-style-type: none;
133 list-style-image: none;
134 float: left;
135 margin: 0;
136 padding: 0;
137 }
138
139 .btn-install {
140 font-weight: bold;
141 font-size: 110%;
142 padding: .2em .3em;
143 }
144
145 .license {
146 font-size: 85%;
147 padding-top: 3em;
148 }
149
150 </style>
151 <script type="text/javascript">
152 <!--
153 function hideall() {
154 <?php foreach (array_keys($ourdb) as $db) {
155 echo "\n document.getElementById('$db').style.display='none';";
156 }
157 ?>
158
159 }
160 function toggleDBarea(id,defaultroot) {
161 hideall();
162 var dbarea = document.getElementById(id).style;
163 dbarea.display = (dbarea.display == 'none') ? 'block' : 'none';
164 var db = document.getElementById('RootUser');
165 if (defaultroot) {
166 <?php foreach (array_keys($ourdb) as $db) {
167 echo " if (id == '$db') { db.value = '".$ourdb[$db]['rootuser']."';}\n";
168 }?>
169 }
170 }
171 // -->
172 </script>
173 </head>
174
175 <body>
176 <div id="globalWrapper">
177 <div id="column-content">
178 <div id="content">
179 <div id="bodyContent">
180
181 <h1>MediaWiki <?php print $wgVersion ?> Installation</h1>
182
183 <?php
184
185 /* Check for existing configurations and bug out! */
186
187 if( file_exists( "../LocalSettings.php" ) ) {
188 dieout( "<p><strong>Setup has completed, <a href='../index.php'>your wiki</a> is configured.</strong></p>
189
190 <p>Please delete the /config directory for extra security.</p></div></div></div></div>" );
191 }
192
193 if( file_exists( "./LocalSettings.php" ) ) {
194 writeSuccessMessage();
195
196 dieout( '' );
197 }
198
199 if( !is_writable( "." ) ) {
200 dieout( "<h2>Can't write config file, aborting</h2>
201
202 <p>In order to configure the wiki you have to make the <tt>config</tt> subdirectory
203 writable by the web server. Once configuration is done you'll move the created
204 <tt>LocalSettings.php</tt> to the parent directory, and for added safety you can
205 then remove the <tt>config</tt> subdirectory entirely.</p>
206
207 <p>To make the directory writable on a Unix/Linux system:</p>
208
209 <pre>
210 cd <i>/path/to/wiki</i>
211 chmod a+w config
212 </pre>
213
214 <p>Afterwards retry to start the <a href=\"\">setup</a>.</p>" );
215 }
216
217
218 require_once( "install-utils.inc" );
219 require_once( "maintenance/updaters.inc" );
220
221 class ConfigData {
222 function getEncoded( $data ) {
223 # removing latin1 support, no need...
224 return $data;
225 }
226 function getSitename() { return $this->getEncoded( $this->Sitename ); }
227 function getSysopName() { return $this->getEncoded( $this->SysopName ); }
228 function getSysopPass() { return $this->getEncoded( $this->SysopPass ); }
229
230 function setSchema( $schema ) {
231 $this->DBschema = $schema;
232 switch ( $this->DBschema ) {
233 case 'mysql5':
234 $this->DBTableOptions = 'ENGINE=InnoDB, DEFAULT CHARSET=utf8';
235 $this->DBmysql5 = 'true';
236 break;
237 case 'mysql5-binary':
238 $this->DBTableOptions = 'ENGINE=InnoDB, DEFAULT CHARSET=binary';
239 $this->DBmysql5 = 'true';
240 break;
241 default:
242 $this->DBTableOptions = 'TYPE=InnoDB';
243 $this->DBmysql5 = 'false';
244 }
245 # Set the global for use during install
246 global $wgDBTableOptions;
247 $wgDBTableOptions = $this->DBTableOptions;
248 }
249 }
250
251 ?>
252
253 <ul>
254 <li>
255 <b>Don't forget security updates!</b> Keep an eye on the
256 <a href="http://mail.wikimedia.org/mailman/listinfo/mediawiki-announce">low-traffic
257 release announcements mailing list</a>.
258 </li>
259 </ul>
260
261
262 <h2>Checking environment...</h2>
263 <p><em>Please include all of the lines below when reporting installation problems.</em></p>
264 <ul class="env-check">
265 <?php
266 $endl = "
267 ";
268 define( 'MW_NO_OUTPUT_BUFFER', 1 );
269 $conf = new ConfigData;
270
271 install_version_checks();
272
273 print "<li>PHP " . phpversion() . " installed</li>\n";
274
275 ## Temporarily turn off all errors as we try to discover installed databases
276 $olderrnum = error_reporting(0);
277
278 $phpdatabases = array();
279 foreach (array_keys($ourdb) as $db) {
280 $compname = $ourdb[$db]['compile'];
281 if (extension_loaded($compname) or dl($compname . '.' . PHP_SHLIB_SUFFIX)) {
282 array_push($phpdatabases, $db);
283 $ourdb[$db]['havedriver'] = 1;
284 }
285 }
286
287 error_reporting($olderrornum);
288
289 if (!$phpdatabases) {
290 print "Could not find a suitable database driver!<ul>";
291 foreach (array_keys($ourdb) AS $db) {
292 $comp = $ourdb[$db]['compile'];
293 $full = $ourdb[$db]['fullname'];
294 print "<li>For <b>$full</b>, compile PHP using <b>--with-$comp</b>, "
295 ."or install the $comp.so module</li>\n";
296 }
297 dieout( "</ul></ul>" );
298 }
299
300 print "<li>Found database drivers for:";
301 foreach (array_keys($ourdb) AS $db) {
302 if ($ourdb[$db]['havedriver']) {
303 $DefaultDBtype = $db;
304 print " ".$ourdb[$db]['fullname'];
305 }
306 }
307 print "</li>\n";
308 if (count($phpdatabases) != 1)
309 $DefaultDBtype = '';
310
311 if( ini_get( "register_globals" ) ) {
312 ?>
313 <li>
314 <div style="font-size:110%">
315 <strong class="error">Warning:</strong>
316 <strong>PHP's <tt><a href="http://php.net/register_globals">register_globals</a></tt> option is enabled. Disable it if you can.</strong>
317 </div>
318 MediaWiki will work, but your server is more exposed to PHP-based security vulnerabilities.
319 </li>
320 <?php
321 }
322
323 $fatal = false;
324
325 if( ini_get( "magic_quotes_runtime" ) ) {
326 $fatal = true;
327 ?><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>
328 This option corrupts data input unpredictably; you cannot install or use
329 MediaWiki unless this option is disabled.
330 <?php
331 }
332
333 if( ini_get( "magic_quotes_sybase" ) ) {
334 $fatal = true;
335 ?><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>
336 This option corrupts data input unpredictably; you cannot install or use
337 MediaWiki unless this option is disabled.
338 <?php
339 }
340
341 if( ini_get( "mbstring.func_overload" ) ) {
342 $fatal = true;
343 ?><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>
344 This option causes errors and may corrupt data unpredictably;
345 you cannot install or use MediaWiki unless this option is disabled.
346 <?php
347 }
348
349 if( ini_get( "zend.ze1_compatibility_mode" ) ) {
350 $fatal = true;
351 ?><li class="error"><strong>Fatal: <a href="http://www.php.net/manual/en/ini.core.php">zend.ze1_compatibility_mode</a> is active!</strong>
352 This option causes horrible bugs with MediaWiki; you cannot install or use
353 MediaWiki unless this option is disabled.
354 <?php
355 }
356
357
358 if( $fatal ) {
359 dieout( "</ul><p>Cannot install MediaWiki.</p>" );
360 }
361
362 if( ini_get( "safe_mode" ) ) {
363 $conf->safeMode = true;
364 ?>
365 <li><b class='error'>Warning:</b> <strong>PHP's
366 <a href='http://www.php.net/features.safe-mode'>safe mode</a> is active.</strong>
367 You may have problems caused by this, particularly if using image uploads.
368 </li>
369 <?php
370 } else {
371 $conf->safeMode = false;
372 }
373
374 $sapi = php_sapi_name();
375 print "<li>PHP server API is $sapi; ";
376 if( $wgUsePathInfo ) {
377 print "ok, using pretty URLs (<tt>index.php/Page_Title</tt>)";
378 } else {
379 print "using ugly URLs (<tt>index.php?title=Page_Title</tt>)";
380 }
381 print "</li>\n";
382
383 $conf->xml = function_exists( "utf8_encode" );
384 if( $conf->xml ) {
385 print "<li>Have XML / Latin1-UTF-8 conversion support.</li>\n";
386 } else {
387 dieout( "PHP's XML module is missing; the wiki requires functions in
388 this module and won't work in this configuration.
389 If you're running Mandrake, install the php-xml package." );
390 }
391
392 # Check for session support
393 if( !function_exists( 'session_name' ) )
394 dieout( "PHP's session module is missing. MediaWiki requires session support in order to function." );
395
396 # session.save_path doesn't *have* to be set, but if it is, and it's
397 # not valid/writable/etc. then it can cause problems
398 $sessionSavePath = ini_get( 'session.save_path' );
399 # Warn the user if it's not set, but let them proceed
400 if( !$sessionSavePath ) {
401 print "<li><strong>Warning:</strong> A value for <tt>session.save_path</tt>
402 has not been set in PHP.ini. If the default value causes problems with
403 saving session data, set it to a valid path which is read/write/execute
404 for the user your web server is running under.</li>";
405 } elseif ( is_dir( $sessionSavePath ) && is_writable( $sessionSavePath ) ) {
406 # All good? Let the user know
407 print "<li>Session save path appears to be valid.</li>";
408 } else {
409 # Something not right? Halt the installation so the user can fix it up
410 dieout( "Your session save path appears to be invalid or is not writable.
411 PHP needs to be able to save data to this location in order for correct
412 session operation. Please check that <tt>session.save_path</tt> in
413 <tt>PHP.ini</tt> points to a valid path, and is read/write/execute for
414 the user your web server is running under." );
415 }
416
417 # Check for PCRE support
418 if( !function_exists( 'preg_match' ) )
419 dieout( "The PCRE support module appears to be missing. MediaWiki requires the
420 Perl-compatible regular expression functions." );
421
422 $memlimit = ini_get( "memory_limit" );
423 $conf->raiseMemory = false;
424 if( empty( $memlimit ) || $memlimit == -1 ) {
425 print "<li>PHP is configured with no <tt>memory_limit</tt>.</li>\n";
426 } else {
427 print "<li>PHP's <tt>memory_limit</tt> is " . htmlspecialchars( $memlimit ) . ". ";
428 $n = intval( $memlimit );
429 if( preg_match( '/^([0-9]+)[Mm]$/', trim( $memlimit ), $m ) ) {
430 $n = intval( $m[1] * (1024*1024) );
431 }
432 if( $n < 20*1024*1024 ) {
433 print "Attempting to raise limit to 20M... ";
434 if( false === ini_set( "memory_limit", "20M" ) ) {
435 print "failed.<br /><b>" . htmlspecialchars( $memlimit ) . " seems too low, installation may fail!</b>";
436 } else {
437 $conf->raiseMemory = true;
438 print "ok.";
439 }
440 }
441 print "</li>\n";
442 }
443
444 $conf->turck = function_exists( 'mmcache_get' );
445 if ( $conf->turck ) {
446 print "<li><a href=\"http://turck-mmcache.sourceforge.net/\">Turck MMCache</a> installed</li>\n";
447 }
448
449 $conf->apc = function_exists('apc_fetch');
450 if ($conf->apc ) {
451 print "<li><a href=\"http://www.php.net/apc\">APC</a> installed</li>";
452 }
453
454 $conf->eaccel = function_exists( 'eaccelerator_get' );
455 if ( $conf->eaccel ) {
456 $conf->turck = 'eaccelerator';
457 print "<li><a href=\"http://eaccelerator.sourceforge.net/\">eAccelerator</a> installed</li>\n";
458 }
459
460 if( !$conf->turck && !$conf->eaccel && !$conf->apc ) {
461 echo( '<li>Couldn\'t find <a href="http://turck-mmcache.sourceforge.net">Turck MMCache</a>,
462 <a href="http://eaccelerator.sourceforge.net">eAccelerator</a>, or
463 <a href="http://www.php.net/apc">APC</a>. Object caching functions cannot be used.</li>' );
464 }
465
466 $conf->diff3 = false;
467 $diff3locations = array_merge(
468 array(
469 "/usr/bin",
470 "/usr/local/bin",
471 "/opt/csw/bin",
472 "/usr/gnu/bin",
473 "/usr/sfw/bin" ),
474 explode( $sep, getenv( "PATH" ) ) );
475 $diff3names = array( "gdiff3", "diff3", "diff3.exe" );
476
477 $diff3versioninfo = array( '$1 --version 2>&1', 'diff3 (GNU diffutils)' );
478 foreach ($diff3locations as $loc) {
479 $exe = locate_executable($loc, $diff3names, $diff3versioninfo);
480 if ($exe !== false) {
481 $conf->diff3 = $exe;
482 break;
483 }
484 }
485
486 if ($conf->diff3)
487 print "<li>Found GNU diff3: <tt>$conf->diff3</tt>.</li>";
488 else
489 print "<li>GNU diff3 not found.</li>";
490
491 $conf->ImageMagick = false;
492 $imcheck = array( "/usr/bin", "/opt/csw/bin", "/usr/local/bin", "/sw/bin", "/opt/local/bin" );
493 foreach( $imcheck as $dir ) {
494 $im = "$dir/convert";
495 if( file_exists( $im ) ) {
496 print "<li>Found ImageMagick: <tt>$im</tt>; image thumbnailing will be enabled if you enable uploads.</li>\n";
497 $conf->ImageMagick = $im;
498 break;
499 }
500 }
501
502 $conf->HaveGD = function_exists( "imagejpeg" );
503 if( $conf->HaveGD ) {
504 print "<li>Found GD graphics library built-in";
505 if( !$conf->ImageMagick ) {
506 print ", image thumbnailing will be enabled if you enable uploads";
507 }
508 print ".</li>\n";
509 } else {
510 if( !$conf->ImageMagick ) {
511 print "<li>Couldn't find GD library or ImageMagick; image thumbnailing disabled.</li>\n";
512 }
513 }
514
515 $conf->IP = dirname( dirname( __FILE__ ) );
516 print "<li>Installation directory: <tt>" . htmlspecialchars( $conf->IP ) . "</tt></li>\n";
517
518
519 // PHP_SELF isn't available sometimes, such as when PHP is CGI but
520 // cgi.fix_pathinfo is disabled. In that case, fall back to SCRIPT_NAME
521 // to get the path to the current script... hopefully it's reliable. SIGH
522 $path = ($_SERVER["PHP_SELF"] === '')
523 ? $_SERVER["SCRIPT_NAME"]
524 : $_SERVER["PHP_SELF"];
525 $conf->ScriptPath = preg_replace( '{^(.*)/config.*$}', '$1', $path );
526 print "<li>Script URI path: <tt>" . htmlspecialchars( $conf->ScriptPath ) . "</tt></li>\n";
527
528 print "<li style='font-weight:bold;color:green;font-size:110%'>Environment checked. You can install MediaWiki.</li>\n";
529 $conf->posted = ($_SERVER["REQUEST_METHOD"] == "POST");
530
531 $conf->Sitename = ucfirst( importPost( "Sitename", "" ) );
532 $defaultEmail = empty( $_SERVER["SERVER_ADMIN"] )
533 ? 'root@localhost'
534 : $_SERVER["SERVER_ADMIN"];
535 $conf->EmergencyContact = importPost( "EmergencyContact", $defaultEmail );
536 $conf->DBtype = importPost( "DBtype", $DefaultDBtype );
537 ?>
538
539 <?php
540 $conf->DBserver = importPost( "DBserver", "localhost" );
541 $conf->DBname = importPost( "DBname", "wikidb" );
542 $conf->DBuser = importPost( "DBuser", "wikiuser" );
543 $conf->DBpassword = importPost( "DBpassword" );
544 $conf->DBpassword2 = importPost( "DBpassword2" );
545 $conf->SysopName = importPost( "SysopName", "WikiSysop" );
546 $conf->SysopPass = importPost( "SysopPass" );
547 $conf->SysopPass2 = importPost( "SysopPass2" );
548 $conf->RootUser = importPost( "RootUser", "root" );
549 $conf->RootPW = importPost( "RootPW", "" );
550 $useRoot = importCheck( 'useroot', false );
551
552 ## MySQL specific:
553 $conf->DBprefix = importPost( "DBprefix" );
554 $conf->setSchema( importPost( "DBschema", "mysql4" ) );
555 $conf->LanguageCode = importPost( "LanguageCode", "en" );
556
557 ## Postgres specific:
558 $conf->DBport = importPost( "DBport", "5432" );
559 $conf->DBmwschema = importPost( "DBmwschema", "mediawiki" );
560 $conf->DBts2schema = importPost( "DBts2schema", "public" );
561
562 /* Check for validity */
563 $errs = array();
564
565 if( $conf->Sitename == "" || $conf->Sitename == "MediaWiki" || $conf->Sitename == "Mediawiki" ) {
566 $errs["Sitename"] = "Must not be blank or \"MediaWiki\"";
567 }
568 if( $conf->DBuser == "" ) {
569 $errs["DBuser"] = "Must not be blank";
570 }
571 if( ($conf->DBtype == 'mysql') && (strlen($conf->DBuser) > 16) ) {
572 $errs["DBuser"] = "Username too long";
573 }
574 if( $conf->DBpassword == "" && $conf->DBtype != "postgres" ) {
575 $errs["DBpassword"] = "Must not be blank";
576 }
577 if( $conf->DBpassword != $conf->DBpassword2 ) {
578 $errs["DBpassword2"] = "Passwords don't match!";
579 }
580 if( !preg_match( '/^[A-Za-z_0-9]*$/', $conf->DBprefix ) ) {
581 $errs["DBprefix"] = "Invalid table prefix";
582 }
583
584 if( $conf->SysopPass == "" ) {
585 $errs["SysopPass"] = "Must not be blank";
586 }
587 if( $conf->SysopPass != $conf->SysopPass2 ) {
588 $errs["SysopPass2"] = "Passwords don't match!";
589 }
590
591 $conf->License = importRequest( "License", "none" );
592 if( $conf->License == "gfdl" ) {
593 $conf->RightsUrl = "http://www.gnu.org/copyleft/fdl.html";
594 $conf->RightsText = "GNU Free Documentation License 1.2";
595 $conf->RightsCode = "gfdl";
596 $conf->RightsIcon = '${wgScriptPath}/skins/common/images/gnu-fdl.png';
597 } elseif( $conf->License == "none" ) {
598 $conf->RightsUrl = $conf->RightsText = $conf->RightsCode = $conf->RightsIcon = "";
599 } else {
600 $conf->RightsUrl = importRequest( "RightsUrl", "" );
601 $conf->RightsText = importRequest( "RightsText", "" );
602 $conf->RightsCode = importRequest( "RightsCode", "" );
603 $conf->RightsIcon = importRequest( "RightsIcon", "" );
604 }
605
606 $conf->Shm = importRequest( "Shm", "none" );
607 $conf->MCServers = importRequest( "MCServers" );
608
609 /* Test memcached servers */
610
611 if ( $conf->Shm == 'memcached' && $conf->MCServers ) {
612 $conf->MCServerArray = array_map( 'trim', explode( ',', $conf->MCServers ) );
613 foreach ( $conf->MCServerArray as $server ) {
614 $error = testMemcachedServer( $server );
615 if ( $error ) {
616 $errs["MCServers"] = $error;
617 break;
618 }
619 }
620 } else if ( $conf->Shm == 'memcached' ) {
621 $errs["MCServers"] = "Please specify at least one server if you wish to use memcached";
622 }
623
624 /* default values for installation */
625 $conf->Email = importRequest("Email", "email_enabled");
626 $conf->Emailuser = importRequest("Emailuser", "emailuser_enabled");
627 $conf->Enotif = importRequest("Enotif", "enotif_allpages");
628 $conf->Eauthent = importRequest("Eauthent", "eauthent_enabled");
629
630 if( $conf->posted && ( 0 == count( $errs ) ) ) {
631 do { /* So we can 'continue' to end prematurely */
632 $conf->Root = ($conf->RootPW != "");
633
634 /* Load up the settings and get installin' */
635 $local = writeLocalSettings( $conf );
636 echo "<li style=\"list-style: none\">\n";
637 echo "<p><b>Generating configuration file...</b></p>\n";
638 echo "</li>\n";
639
640 $wgCommandLineMode = false;
641 chdir( ".." );
642 $ok = eval( $local );
643 if( $ok === false ) {
644 dieout( "Errors in generated configuration; " .
645 "most likely due to a bug in the installer... " .
646 "Config file was: " .
647 "<pre>" .
648 htmlspecialchars( $local ) .
649 "</pre>" .
650 "</ul>" );
651 }
652 $conf->DBtypename = '';
653 foreach (array_keys($ourdb) as $db) {
654 if ($conf->DBtype === $db)
655 $conf->DBtypename = $ourdb[$db]['fullname'];
656 }
657 if ( ! strlen($conf->DBtype)) {
658 $errs["DBpicktype"] = "Please choose a database type";
659 continue;
660 }
661
662 if (! $conf->DBtypename) {
663 $errs["DBtype"] = "Unknown database type '$conf->DBtype'";
664 continue;
665 }
666 print "<li>Database type: {$conf->DBtypename}</li>\n";
667 $dbclass = 'Database'.ucfirst($conf->DBtype);
668 $wgDBtype = $conf->DBtype;
669 $wgDBadminuser = "root";
670 $wgDBadminpassword = $conf->RootPW;
671
672 ## Mysql specific:
673 $wgDBprefix = $conf->DBprefix;
674
675 ## Postgres specific:
676 $wgDBport = $conf->DBport;
677 $wgDBmwschema = $conf->DBmwschema;
678 $wgDBts2schema = $conf->DBts2schema;
679
680 $wgCommandLineMode = true;
681 $wgUseDatabaseMessages = false; /* FIXME: For database failure */
682 require_once( "includes/Setup.php" );
683 chdir( "config" );
684
685 $wgTitle = Title::newFromText( "Installation script" );
686 error_reporting( E_ALL );
687 print "<li>Loading class: $dbclass";
688 $dbc = new $dbclass;
689
690 if( $conf->DBtype == 'mysql' ) {
691 $mysqlOldClient = version_compare( mysql_get_client_info(), "4.1.0", "lt" );
692 if( $mysqlOldClient ) {
693 print "<li><b>PHP is linked with old MySQL client libraries. If you are
694 using a MySQL 4.1 server and have problems connecting to the database,
695 see <a href='http://dev.mysql.com/doc/mysql/en/old-client.html'
696 >http://dev.mysql.com/doc/mysql/en/old-client.html</a> for help.</b></li>\n";
697 }
698 $ok = true; # Let's be optimistic
699
700 # Decide if we're going to use the superuser or the regular database user
701 $conf->Root = $useRoot;
702 if( $conf->Root ) {
703 $db_user = $conf->RootUser;
704 $db_pass = $conf->RootPW;
705 } else {
706 $db_user = $wgDBuser;
707 $db_pass = $wgDBpassword;
708 }
709
710 # Attempt to connect
711 echo( "<li>Attempting to connect to database server as $db_user..." );
712 $wgDatabase = Database::newFromParams( $wgDBserver, $db_user, $db_pass, '', 1 );
713
714 # Check the connection and respond to errors
715 if( $wgDatabase->isOpen() ) {
716 # Seems OK
717 $ok = true;
718 $wgDBadminuser = $db_user;
719 $wgDBadminpassword = $db_pass;
720 echo( "success.</li>\n" );
721 $wgDatabase->ignoreErrors( true );
722 $myver = $wgDatabase->getServerVersion();
723 } else {
724 # There were errors, report them and back out
725 $ok = false;
726 $errno = mysql_errno();
727 $errtx = htmlspecialchars( mysql_error() );
728 switch( $errno ) {
729 case 1045:
730 case 2000:
731 echo( "failed due to authentication errors. Check passwords.</li>" );
732 if( $conf->Root ) {
733 # The superuser details are wrong
734 $errs["RootUser"] = "Check username";
735 $errs["RootPW"] = "and password";
736 } else {
737 # The regular user details are wrong
738 $errs["DBuser"] = "Check username";
739 $errs["DBpassword"] = "and password";
740 }
741 break;
742 case 2002:
743 case 2003:
744 default:
745 # General connection problem
746 echo( "failed with error [$errno] $errtx.</li>\n" );
747 $errs["DBserver"] = "Connection failed";
748 break;
749 } # switch
750 } #conn. att.
751
752 if( !$ok ) { continue; }
753
754 } else /* not mysql */ {
755 error_reporting( E_ALL );
756 $wgSuperUser = '';
757 ## Possible connect as a superuser
758 if( $useRoot ) {
759 $wgDBsuperuser = $conf->RootUser;
760 echo( "<li>Attempting to connect to database \"postgres\" as superuser \"$wgDBsuperuser\"..." );
761 $wgDatabase = $dbc->newFromParams($wgDBserver, $wgDBsuperuser, $conf->RootPW, "postgres", 1);
762 if (!$wgDatabase->isOpen()) {
763 print " error: " . $wgDatabase->lastError() . "</li>\n";
764 $errs["DBserver"] = "Could not connect to database as superuser";
765 $errs["RootUser"] = "Check username";
766 $errs["RootPW"] = "and password";
767 continue;
768 }
769 }
770 echo( "<li>Attempting to connect to database \"$wgDBname\" as \"$wgDBuser\"..." );
771 $wgDatabase = $dbc->newFromParams($wgDBserver, $wgDBuser, $wgDBpassword, $wgDBname, 1);
772 if (!$wgDatabase->isOpen()) {
773 print " error: " . $wgDatabase->lastError() . "</li>\n";
774 } else {
775 $myver = $wgDatabase->getServerVersion();
776 }
777 }
778
779 if ( !$wgDatabase->isOpen() ) {
780 $errs["DBserver"] = "Couldn't connect to database";
781 continue;
782 }
783
784 print "<li>Connected to $myver";
785 if ($conf->DBtype == 'mysql') {
786 if( version_compare( $myver, "4.0.14" ) < 0 ) {
787 dieout( " -- mysql 4.0.14 or later required. Aborting." );
788 }
789 $mysqlNewAuth = version_compare( $myver, "4.1.0", "ge" );
790 if( $mysqlNewAuth && $mysqlOldClient ) {
791 print "; <b class='error'>You are using MySQL 4.1 server, but PHP is linked
792 to old client libraries; if you have trouble with authentication, see
793 <a href='http://dev.mysql.com/doc/mysql/en/old-client.html'
794 >http://dev.mysql.com/doc/mysql/en/old-client.html</a> for help.</b>";
795 }
796 if( $wgDBmysql5 ) {
797 if( $mysqlNewAuth ) {
798 print "; enabling MySQL 4.1/5.0 charset mode";
799 } else {
800 print "; <b class='error'>MySQL 4.1/5.0 charset mode enabled,
801 but older version detected; will likely fail.</b>";
802 }
803 }
804 print "</li>\n";
805
806 @$sel = $wgDatabase->selectDB( $wgDBname );
807 if( $sel ) {
808 print "<li>Database <tt>" . htmlspecialchars( $wgDBname ) . "</tt> exists</li>\n";
809 } else {
810 $err = mysql_errno();
811 $databaseSafe = htmlspecialchars( $wgDBname );
812 if( $err == 1102 /* Invalid database name */ ) {
813 print "<ul><li><strong>{$databaseSafe}</strong> is not a valid database name.</li></ul>";
814 continue;
815 } elseif( $err != 1049 /* Database doesn't exist */ ) {
816 print "<ul><li>Error selecting database <strong>{$databaseSafe}</strong>: {$err} ";
817 print htmlspecialchars( mysql_error() ) . "</li></ul>";
818 continue;
819 }
820 print "<li>Attempting to create database...</li>";
821 $res = $wgDatabase->query( "CREATE DATABASE `$wgDBname`" );
822 if( !$res ) {
823 print "<li>Couldn't create database <tt>" .
824 htmlspecialchars( $wgDBname ) .
825 "</tt>; try with root access or check your username/pass.</li>\n";
826 $errs["RootPW"] = "&lt;- Enter";
827 continue;
828 }
829 print "<li>Created database <tt>" . htmlspecialchars( $wgDBname ) . "</tt></li>\n";
830 }
831 $wgDatabase->selectDB( $wgDBname );
832 }
833 else if ($conf->DBtype == 'postgres') {
834 if( version_compare( $myver, "PostgreSQL 8.0" ) < 0 ) {
835 dieout( " <b>Postgres 8.0 or later is required</b>. Aborting.</li></ul>" );
836 }
837 }
838
839 if( $wgDatabase->tableExists( "cur" ) || $wgDatabase->tableExists( "revision" ) ) {
840 print "<li>There are already MediaWiki tables in this database. Checking if updates are needed...</li>\n";
841
842 # Determine existing default character set
843 if ( $wgDatabase->tableExists( "revision" ) ) {
844 $revision = $wgDatabase->escapeLike( $conf->DBprefix . 'revision' );
845 $res = $wgDatabase->query( "SHOW TABLE STATUS LIKE '$revision'" );
846 $row = $wgDatabase->fetchObject( $res );
847 if ( !$row ) {
848 echo "<li>SHOW TABLE STATUS query failed!</li>\n";
849 $existingSchema = false;
850 } elseif ( preg_match( '/^latin1/', $row->Collation ) ) {
851 $existingSchema = 'mysql4';
852 } elseif ( preg_match( '/^utf8/', $row->Collation ) ) {
853 $existingSchema = 'mysql5';
854 } elseif ( preg_match( '/^binary/', $row->Collation ) ) {
855 $existingSchema = 'mysql5-binary';
856 } else {
857 $existingSchema = false;
858 echo "<li><strong>Warning:</strong> Unrecognised existing collation</li>\n";
859 }
860 if ( $existingSchema && $existingSchema != $conf->DBschema ) {
861 print "<li><strong>Warning:</strong> you requested the {$conf->DBschema} schema, " .
862 "but the existing database has the $existingSchema schema. This upgrade script ".
863 "can't convert it, so it will remain $existingSchema.</li>\n";
864 $conf->setSchema( $existingSchema );
865 }
866 }
867
868 # Create user if required (todo: other databases)
869 if ( $conf->Root && $conf->DBtype == 'mysql') {
870 $conn = $dbc->newFromParams( $wgDBserver, $wgDBuser, $wgDBpassword, $wgDBname, 1 );
871 if ( $conn->isOpen() ) {
872 print "<li>DB user account ok</li>\n";
873 $conn->close();
874 } else {
875 print "<li>Granting user permissions...";
876 if( $mysqlOldClient && $mysqlNewAuth ) {
877 print " <b class='error'>If the next step fails, see <a href='http://dev.mysql.com/doc/mysql/en/old-client.html'>http://dev.mysql.com/doc/mysql/en/old-client.html</a> for help.</b>";
878 }
879 print "</li>\n";
880 dbsource( "../maintenance/users.sql", $wgDatabase );
881 }
882 }
883 print "</ul><pre>\n";
884 chdir( ".." );
885 flush();
886 do_all_updates();
887 chdir( "config" );
888 print "</pre>\n";
889 print "<ul><li>Finished update checks.</li>\n";
890 } else {
891 # FIXME: Check for errors
892 print "<li>Creating tables...";
893 if ($conf->DBtype == 'mysql') {
894 dbsource( "../maintenance/tables.sql", $wgDatabase );
895 dbsource( "../maintenance/interwiki.sql", $wgDatabase );
896 } else if ($conf->DBtype == 'postgres') {
897 $wgDatabase->setup_database();
898 }
899 else {
900 $errs["DBtype"] = "Do not know how to handle database type '$conf->DBtype'";
901 continue;
902 }
903
904 print " done.</li>\n";
905
906 print "<li>Initializing data...</li>\n";
907 $wgDatabase->insert( 'site_stats',
908 array ( 'ss_row_id' => 1,
909 'ss_total_views' => 0,
910 'ss_total_edits' => 0,
911 'ss_good_articles' => 0 ) );
912
913 # Set up the "regular user" account *if we can, and if we need to*
914 if( $conf->Root and $conf->DBtype == 'mysql') {
915 # See if we need to
916 $wgDatabase2 = $dbc->newFromParams( $wgDBserver, $wgDBuser, $wgDBpassword, $wgDBname, 1 );
917 if( $wgDatabase2->isOpen() ) {
918 # Nope, just close the test connection and continue
919 $wgDatabase2->close();
920 echo( "<li>User $wgDBuser exists. Skipping grants.</li>\n" );
921 } else {
922 # Yes, so run the grants
923 echo( "<li>Granting user permissions to $wgDBuser on $wgDBname..." );
924 dbsource( "../maintenance/users.sql", $wgDatabase );
925 echo( "success.</li>\n" );
926 }
927 }
928
929 if( $conf->SysopName ) {
930 $u = User::newFromName( $conf->getSysopName() );
931 if ( !$u ) {
932 print "<li><strong class=\"error\">Warning:</strong> Skipped sysop account creation - invalid username!</li>\n";
933 }
934 else if ( 0 == $u->idForName() ) {
935 $u->addToDatabase();
936 $u->setPassword( $conf->getSysopPass() );
937 $u->saveSettings();
938
939 $u->addGroup( "sysop" );
940 $u->addGroup( "bureaucrat" );
941
942 print "<li>Created sysop account <tt>" .
943 htmlspecialchars( $conf->SysopName ) . "</tt>.</li>\n";
944 } else {
945 print "<li>Could not create user - already exists!</li>\n";
946 }
947 } else {
948 print "<li>Skipped sysop account creation, no name given.</li>\n";
949 }
950
951 $titleobj = Title::newFromText( wfMsgNoDB( "mainpage" ) );
952 $article = new Article( $titleobj );
953 $newid = $article->insertOn( $wgDatabase );
954 $revision = new Revision( array(
955 'page' => $newid,
956 'text' => wfMsg( 'mainpagetext' ) . "\n\n" . wfMsgNoTrans( 'mainpagedocfooter' ),
957 'comment' => '',
958 'user' => 0,
959 'user_text' => 'MediaWiki default',
960 ) );
961 $revid = $revision->insertOn( $wgDatabase );
962 $article->updateRevisionOn( $wgDatabase, $revision );
963 }
964
965 /* Write out the config file now that all is well */
966 print "<li style=\"list-style: none\">\n";
967 print "<p>Creating LocalSettings.php...</p>\n\n";
968 $localSettings = "<" . "?php$endl$local$endl\r\n";
969 // Fix up a common line-ending problem (due to CVS on Windows)
970 $localSettings = str_replace( "\r\n", "\n", $localSettings );
971 $f = fopen( "LocalSettings.php", 'xt' );
972
973 if( $f == false ) {
974 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" .
975 "<p>Here's the file that would have been written, try to paste it into place manually:</p>\n" .
976 "<pre>\n" . htmlspecialchars( $localSettings ) . "</pre>\n" );
977 }
978 if(fwrite( $f, $localSettings ) ) {
979 fclose( $f );
980 writeSuccessMessage();
981 } else {
982 fclose( $f );
983 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");
984
985 }
986 print "</li>\n";
987
988 } while( false );
989 }
990 ?>
991 </ul>
992
993
994 <?php
995
996 if( count( $errs ) ) {
997 /* Display options form */
998
999 if( $conf->posted ) {
1000 echo "<p class='error-top'>Something's not quite right yet; make sure everything below is filled out correctly.</p>\n";
1001 }
1002 ?>
1003
1004 <form action="index.php" name="config" method="post">
1005
1006
1007 <h2>Site config</h2>
1008
1009 <div class="config-section">
1010 <div class="config-input">
1011 <?php
1012 aField( $conf, "Sitename", "Wiki name:" );
1013 ?>
1014 </div>
1015 <p class="config-desc">
1016 Preferably a short word without punctuation, i.e. "Wikipedia".<br />
1017 Will appear as the namespace name for "meta" pages, and throughout the interface.
1018 </p>
1019
1020 <div class="config-input">
1021 <?php
1022 aField( $conf, "EmergencyContact", "Contact e-mail:" );
1023 ?>
1024 </div>
1025 <p class="config-desc">
1026 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.
1027 </p>
1028
1029 <div class="config-input">
1030 <label class='column' for="LanguageCode">Language:</label>
1031 <select id="LanguageCode" name="LanguageCode">
1032
1033 <?php
1034 $list = getLanguageList();
1035 foreach( $list as $code => $name ) {
1036 $sel = ($code == $conf->LanguageCode) ? 'selected="selected"' : '';
1037 echo "\t\t<option value=\"$code\" $sel>$name</option>\n";
1038 }
1039 ?>
1040 </select>
1041 </div>
1042 <p class="config-desc">
1043 Select the language for your wiki's interface. Some localizations aren't fully complete. Unicode (UTF-8) is used for all localizations.
1044 </p>
1045
1046 <div class="config-input">
1047 <label class='column'>Copyright/license:</label>
1048
1049 <ul class="plain">
1050 <li><?php aField( $conf, "License", "No license metadata", "radio", "none" ); ?></li>
1051 <li><?php aField( $conf, "License", "GNU Free Documentation License 1.2 (Wikipedia-compatible)", "radio", "gfdl" ); ?></li>
1052 <li><?php
1053 aField( $conf, "License", "A Creative Commons license - ", "radio", "cc" );
1054 $partner = "MediaWiki";
1055 $exit = urlencode( "$wgServer{$conf->ScriptPath}/config/index.php?License=cc&RightsUrl=[license_url]&RightsText=[license_name]&RightsCode=[license_code]&RightsIcon=[license_button]" );
1056 $icon = urlencode( "$wgServer$wgUploadPath/wiki.png" );
1057 $ccApp = htmlspecialchars( "http://creativecommons.org/license/?partner=$partner&exit_url=$exit&partner_icon_url=$icon" );
1058 print "<a href=\"$ccApp\" target='_blank'>choose</a>";
1059 ?>
1060 <?php if( $conf->License == "cc" ) { ?>
1061 <ul>
1062 <li><?php aField( $conf, "RightsIcon", "<img src=\"" . htmlspecialchars( $conf->RightsIcon ) . "\" alt='(Creative Commons icon)' />", "hidden" ); ?></li>
1063 <li><?php aField( $conf, "RightsText", htmlspecialchars( $conf->RightsText ), "hidden" ); ?></li>
1064 <li><?php aField( $conf, "RightsCode", "code: " . htmlspecialchars( $conf->RightsCode ), "hidden" ); ?></li>
1065 <li><?php aField( $conf, "RightsUrl", "<a href=\"" . htmlspecialchars( $conf->RightsUrl ) . "\">" . htmlspecialchars( $conf->RightsUrl ) . "</a>", "hidden" ); ?></li>
1066 </ul>
1067 <?php } ?>
1068 </li>
1069 </ul>
1070 </div>
1071 <p class="config-desc">
1072 A notice, icon, and machine-readable copyright metadata will be displayed for the license you pick.
1073 </p>
1074
1075
1076 <div class="config-input">
1077 <?php aField( $conf, "SysopName", "Admin username:" ) ?>
1078 </div>
1079 <div class="config-input">
1080 <?php aField( $conf, "SysopPass", "Password:", "password" ) ?>
1081 </div>
1082 <div class="config-input">
1083 <?php aField( $conf, "SysopPass2", "Password confirm:", "password" ) ?>
1084 </div>
1085 <p class="config-desc">
1086 An admin can lock/delete pages, block users from editing, and do other maintenance tasks.<br />
1087 A new account will be added only when creating a new wiki database.
1088 </p>
1089
1090 <div class="config-input">
1091 <label class='column'>Shared memory caching:</label>
1092
1093 <ul class="plain">
1094 <li><?php aField( $conf, "Shm", "No caching", "radio", "none" ); ?></li>
1095 <?php
1096 if ( $conf->turck ) {
1097 echo "<li>";
1098 aField( $conf, "Shm", "Turck MMCache", "radio", "turck" );
1099 echo "</li>";
1100 }
1101 if ( $conf->apc ) {
1102 echo "<li>";
1103 aField( $conf, "Shm", "APC", "radio", "apc" );
1104 echo "</li>";
1105 }
1106 if ( $conf->eaccel ) {
1107 echo "<li>";
1108 aField( $conf, "Shm", "eAccelerator", "radio", "eaccel" );
1109 echo "</li>";
1110 }
1111 ?>
1112 <li><?php aField( $conf, "Shm", "Memcached", "radio", "memcached" ); ?></li>
1113 </ul>
1114 <div style="clear:left"><?php aField( $conf, "MCServers", "Memcached servers:", "text" ) ?></div>
1115 </div>
1116 <p class="config-desc">
1117 Using a shared memory system such as Turck MMCache, APC, eAccelerator, or Memcached
1118 will speed up MediaWiki significantly. Memcached is the best solution but needs to be
1119 installed. Specify the server addresses and ports in a comma-separated list. Only
1120 use Turck shared memory if the wiki will be running on a single Apache server.
1121 </p>
1122 </div>
1123
1124 <h2>E-mail, e-mail notification and authentication setup</h2>
1125
1126 <div class="config-section">
1127 <div class="config-input">
1128 <label class='column'>E-mail features (global):</label>
1129 <ul class="plain">
1130 <li><?php aField( $conf, "Email", "Enabled", "radio", "email_enabled" ); ?></li>
1131 <li><?php aField( $conf, "Email", "Disabled", "radio", "email_disabled" ); ?></li>
1132 </ul>
1133 </div>
1134 <p class="config-desc">
1135 Use this to disable all e-mail functions (password reminders, user-to-user e-mail, and e-mail notifications)
1136 if sending mail doesn't work on your server.
1137 </p>
1138
1139 <div class="config-input">
1140 <label class='column'>User-to-user e-mail:</label>
1141 <ul class="plain">
1142 <li><?php aField( $conf, "Emailuser", "Enabled", "radio", "emailuser_enabled" ); ?></li>
1143 <li><?php aField( $conf, "Emailuser", "Disabled", "radio", "emailuser_disabled" ); ?></li>
1144 </ul>
1145 </div>
1146 <p class="config-desc">
1147 The user-to-user e-mail feature (Special:Emailuser) lets the wiki act as a relay to allow users to exchange e-mail without publicly advertising their e-mail address.
1148 </p>
1149 <div class="config-input">
1150 <label class='column'>E-mail notification about changes:</label>
1151 <ul class="plain">
1152 <li><?php aField( $conf, "Enotif", "Disabled", "radio", "enotif_disabled" ); ?></li>
1153 <li><?php aField( $conf, "Enotif", "Enabled for changes to user discussion pages only", "radio", "enotif_usertalk" ); ?></li>
1154 <li><?php aField( $conf, "Enotif", "Enabled for changes to user discussion pages, and to pages on watchlists (not recommended for large wikis)", "radio", "enotif_allpages" ); ?></li>
1155 </ul>
1156 </div>
1157 <div class="config-desc">
1158 <p>
1159 For this feature to work, an e-mail address must be present for the user account, and the notification
1160 options in the user's preferences must be enabled. Also note the
1161 authentication option below. When testing the feature, keep in mind that your own changes will never trigger notifications to be sent to yourself.</p>
1162
1163 <p>There are additional options for fine tuning in /includes/DefaultSettings.php; copy these to your LocalSettings.php and edit them there to change them.</p>
1164 </div>
1165
1166 <div class="config-input">
1167 <label class='column'>E-mail address authentication:</label>
1168 <ul class="plain">
1169 <li><?php aField( $conf, "Eauthent", "Disabled", "radio", "eauthent_disabled" ); ?></li>
1170 <li><?php aField( $conf, "Eauthent", "Enabled", "radio", "eauthent_enabled" ); ?></li>
1171 </ul>
1172 </div>
1173 <div class="config-desc">
1174 <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
1175 change notification mails. Setting this option is <B>recommended</B> for public wikis because of potential abuse of the e-mail features above.</p>
1176 </div>
1177
1178 </div>
1179
1180 <h2>Database config</h2>
1181
1182 <div class="config-section">
1183 <div class="config-input">
1184 <label class='column'>Database type:</label>
1185 <?php if (isset($errs['DBpicktype'])) print "<span class='error'>$errs[DBpicktype]</span>\n"; ?>
1186 <ul class='plain'><?php database_picker($conf) ?></ul>
1187 </div>
1188
1189 <div class="config-input" style="clear:left"><?php
1190 aField( $conf, "DBserver", "Database host:" );
1191 ?></div>
1192 <p class="config-desc">
1193 If your database server isn't on your web server, enter the name or IP address here.
1194 </p>
1195
1196 <div class="config-input"><?php
1197 aField( $conf, "DBname", "Database name:" );
1198 ?></div>
1199 <div class="config-input"><?php
1200 aField( $conf, "DBuser", "DB username:" );
1201 ?></div>
1202 <div class="config-input"><?php
1203 aField( $conf, "DBpassword", "DB password:", "password" );
1204 ?></div>
1205 <div class="config-input"><?php
1206 aField( $conf, "DBpassword2", "DB password confirm:", "password" );
1207 ?></div>
1208 <p class="config-desc">
1209 If you only have a single user account and database available,
1210 enter those here. If you have database root access (see below)
1211 you can specify new accounts/databases to be created. This account
1212 will not be created if it pre-exists. If this is the case, ensure that it
1213 has SELECT, INSERT, UPDATE, and DELETE permissions on the MediaWiki database.
1214 </p>
1215
1216 <div class="config-input">
1217 <label class="column">Superuser account:</label>
1218 <input type="checkbox" name="useroot" id="useroot" <?php if( $useRoot ) { ?>checked="checked" <?php } ?>/>
1219 &nbsp;<label for="useroot">Use superuser account</label>
1220 </div>
1221 <div class="config-input">
1222 <?php
1223 aField( $conf, "RootUser", "Superuser name:", "superuser" );
1224 ?>
1225 </div>
1226 <div class="config-input">
1227 <?php
1228 aField( $conf, "RootPW", "Superuser password:", "password" );
1229 ?>
1230 </div>
1231
1232 <p class="config-desc">
1233 If the database user specified above does not exist, or does not have access to create
1234 the database (if needed) or tables within it, please check the box and provide details
1235 of a superuser account, such as <strong>root</strong>, which does.
1236 </p>
1237
1238 <?php database_switcher('mysql'); ?>
1239 <div class="config-input"><?php
1240 aField( $conf, "DBprefix", "Database table prefix:" );
1241 ?></div>
1242 <div class="config-desc">
1243 <p>If you need to share one database between multiple wikis, or
1244 between MediaWiki and another web application, you may choose to
1245 add a prefix to all the table names to avoid conflicts.</p>
1246
1247 <p>Avoid exotic characters; something like <tt>mw_</tt> is good.</p>
1248 </div>
1249
1250 <div class="config-input"><label class="column">Database charset</label>
1251 <div>Select one:</div>
1252 <ul class="plain">
1253 <li><?php aField( $conf, "DBschema", "Backwards-compatible UTF-8", "radio", "mysql4" ); ?></li>
1254 <li><?php aField( $conf, "DBschema", "Experimental MySQL 4.1/5.0 UTF-8", "radio", "mysql5" ); ?></li>
1255 <li><?php aField( $conf, "DBschema", "Experimental MySQL 4.1/5.0 binary", "radio", "mysql5-binary" ); ?></li>
1256 </ul>
1257 </div>
1258 <p class="config-desc">
1259 <b>EXPERIMENTAL:</b> You can enable explicit Unicode charset support
1260 for MySQL 4.1 and 5.0 servers. This is not well tested and may
1261 cause things to break. <b>If upgrading an older installation, leave
1262 in backwards-compatible mode.</b>
1263 </p>
1264 </div>
1265
1266 <?php database_switcher('postgres'); ?>
1267 <div class="config-input"><?php
1268 aField( $conf, "DBport", "Database port:" );
1269 ?></div>
1270 <div class="config-input"><?php
1271 aField( $conf, "DBmwschema", "Schema for mediawiki:" );
1272 ?></div>
1273 <div class="config-input"><?php
1274 aField( $conf, "DBts2schema", "Schema for tsearch2:" );
1275 ?></div>
1276 <div class="config-desc">
1277 <p>The username specified above (at "DB username") will have its search path set to the above schemas,
1278 so it is recommended that you create a new user. The above schemas are generally correct:
1279 only change them if you are sure you need to.</p>
1280 </div>
1281 </div>
1282
1283 <div class="config-input" style="padding:2em 0 3em">
1284 <label class='column'>&nbsp;</label>
1285 <input type="submit" value="Install MediaWiki!" class="btn-install" />
1286 </div>
1287
1288 </div>
1289
1290 <script type="text/javascript">
1291 window.onload = toggleDBarea('<?php echo $conf->DBtype; ?>',
1292 <?php
1293 ## If they passed in a root user name, don't populate it on page load
1294 echo strlen(importPost('RootUser', '')) ? 0 : 1;
1295 ?>);
1296 </script>
1297
1298 </form>
1299
1300 <?php
1301 }
1302
1303 /* -------------------------------------------------------------------------------------- */
1304 function writeSuccessMessage() {
1305 if ( ini_get( 'safe_mode' ) && !ini_get( 'open_basedir' ) ) {
1306 echo <<<EOT
1307 <p>Installation successful!</p>
1308 <p>To complete the installation, please do the following:
1309 <ol>
1310 <li>Download config/LocalSettings.php with your FTP client or file manager</li>
1311 <li>Upload it to the parent directory</li>
1312 <li>Delete config/LocalSettings.php</li>
1313 <li>Start using <a href='../index.php'>your wiki</a>!
1314 </ol>
1315 <p>If you are in a shared hosting environment, do <strong>not</strong> just move LocalSettings.php
1316 remotely. LocalSettings.php is currently owned by the user your webserver is running under,
1317 which means that anyone on the same server can read your database password! Downloading
1318 it and uploading it again will hopefully change the ownership to a user ID specific to you.</p>
1319 EOT;
1320 } else {
1321 echo "<p><span style='font-weight:bold;color:green;font-size:110%'>Installation successful!</span> Move the <tt>config/LocalSettings.php</tt> file into the parent directory, then follow
1322 <strong><a href='../index.php'>this link</a></strong> to your wiki.</p>\n";
1323 }
1324 }
1325
1326
1327 function escapePhpString( $string ) {
1328 return strtr( $string,
1329 array(
1330 "\n" => "\\n",
1331 "\r" => "\\r",
1332 "\t" => "\\t",
1333 "\\" => "\\\\",
1334 "\$" => "\\\$",
1335 "\"" => "\\\""
1336 ));
1337 }
1338
1339 function writeLocalSettings( $conf ) {
1340 $conf->PasswordSender = $conf->EmergencyContact;
1341 $magic = ($conf->ImageMagick ? "" : "# ");
1342 $convert = ($conf->ImageMagick ? $conf->ImageMagick : "/usr/bin/convert" );
1343 $rights = ($conf->RightsUrl) ? "" : "# ";
1344 $hashedUploads = $conf->safeMode ? '' : '# ';
1345
1346 switch ( $conf->Shm ) {
1347 case 'memcached':
1348 $cacheType = 'CACHE_MEMCACHED';
1349 $mcservers = var_export( $conf->MCServerArray, true );
1350 break;
1351 case 'turck':
1352 case 'apc':
1353 case 'eaccel':
1354 $cacheType = 'CACHE_ACCEL';
1355 $mcservers = 'array()';
1356 break;
1357 default:
1358 $cacheType = 'CACHE_NONE';
1359 $mcservers = 'array()';
1360 }
1361
1362 if ( $conf->Email == 'email_enabled' ) {
1363 $enableemail = 'true';
1364 $enableuseremail = ( $conf->Emailuser == 'emailuser_enabled' ) ? 'true' : 'false' ;
1365 $eauthent = ( $conf->Eauthent == 'eauthent_enabled' ) ? 'true' : 'false' ;
1366 switch ( $conf->Enotif ) {
1367 case 'enotif_usertalk':
1368 $enotifusertalk = 'true';
1369 $enotifwatchlist = 'false';
1370 break;
1371 case 'enotif_allpages':
1372 $enotifusertalk = 'true';
1373 $enotifwatchlist = 'true';
1374 break;
1375 default:
1376 $enotifusertalk = 'false';
1377 $enotifwatchlist = 'false';
1378 }
1379 } else {
1380 $enableuseremail = 'false';
1381 $enableemail = 'false';
1382 $eauthent = 'false';
1383 $enotifusertalk = 'false';
1384 $enotifwatchlist = 'false';
1385 }
1386
1387 $file = @fopen( "/dev/urandom", "r" );
1388 if ( $file ) {
1389 $secretKey = bin2hex( fread( $file, 32 ) );
1390 fclose( $file );
1391 } else {
1392 $secretKey = "";
1393 for ( $i=0; $i<8; $i++ ) {
1394 $secretKey .= dechex(mt_rand(0, 0x7fffffff));
1395 }
1396 print "<li>Warning: \$wgSecretKey key is insecure, generated with mt_rand(). Consider changing it manually.</li>\n";
1397 }
1398
1399 # Add slashes to strings for double quoting
1400 $slconf = array_map( "escapePhpString", get_object_vars( $conf ) );
1401 if( $conf->License == 'gfdl' ) {
1402 # Needs literal string interpolation for the current style path
1403 $slconf['RightsIcon'] = $conf->RightsIcon;
1404 }
1405
1406 $localsettings = "
1407 # This file was automatically generated by the MediaWiki installer.
1408 # If you make manual changes, please keep track in case you need to
1409 # recreate them later.
1410 #
1411 # See includes/DefaultSettings.php for all configurable settings
1412 # and their default values, but don't forget to make changes in _this_
1413 # file, not there.
1414
1415 # If you customize your file layout, set \$IP to the directory that contains
1416 # the other MediaWiki files. It will be used as a base to locate files.
1417 if( defined( 'MW_INSTALL_PATH' ) ) {
1418 \$IP = MW_INSTALL_PATH;
1419 } else {
1420 \$IP = dirname( __FILE__ );
1421 }
1422
1423 \$path = array( \$IP, \"\$IP/includes\", \"\$IP/languages\" );
1424 set_include_path( implode( PATH_SEPARATOR, \$path ) . PATH_SEPARATOR . get_include_path() );
1425
1426 require_once( \"includes/DefaultSettings.php\" );
1427
1428 # If PHP's memory limit is very low, some operations may fail.
1429 " . ($conf->raiseMemory ? '' : '# ' ) . "ini_set( 'memory_limit', '20M' );" . "
1430
1431 if ( \$wgCommandLineMode ) {
1432 if ( isset( \$_SERVER ) && array_key_exists( 'REQUEST_METHOD', \$_SERVER ) ) {
1433 die( \"This script must be run from the command line\\n\" );
1434 }
1435 }
1436 ## Uncomment this to disable output compression
1437 # \$wgDisableOutputCompression = true;
1438
1439 \$wgSitename = \"{$slconf['Sitename']}\";
1440
1441 ## The URL base path to the directory containing the wiki;
1442 ## defaults for all runtime URL paths are based off of this.
1443 \$wgScriptPath = \"{$slconf['ScriptPath']}\";
1444
1445 ## For more information on customizing the URLs please see:
1446 ## http://www.mediawiki.org/wiki/Manual:Short_URL
1447
1448 \$wgEnableEmail = $enableemail;
1449 \$wgEnableUserEmail = $enableuseremail;
1450
1451 \$wgEmergencyContact = \"{$slconf['EmergencyContact']}\";
1452 \$wgPasswordSender = \"{$slconf['PasswordSender']}\";
1453
1454 ## For a detailed description of the following switches see
1455 ## http://meta.wikimedia.org/Enotif and http://meta.wikimedia.org/Eauthent
1456 ## There are many more options for fine tuning available see
1457 ## /includes/DefaultSettings.php
1458 ## UPO means: this is also a user preference option
1459 \$wgEnotifUserTalk = $enotifusertalk; # UPO
1460 \$wgEnotifWatchlist = $enotifwatchlist; # UPO
1461 \$wgEmailAuthentication = $eauthent;
1462
1463 \$wgDBtype = \"{$slconf['DBtype']}\";
1464 \$wgDBserver = \"{$slconf['DBserver']}\";
1465 \$wgDBname = \"{$slconf['DBname']}\";
1466 \$wgDBuser = \"{$slconf['DBuser']}\";
1467 \$wgDBpassword = \"{$slconf['DBpassword']}\";
1468
1469 # MySQL specific settings
1470 \$wgDBprefix = \"{$slconf['DBprefix']}\";
1471
1472 # MySQL table options to use during installation or update
1473 \$wgDBTableOptions = \"{$slconf['DBTableOptions']}\";
1474
1475 # Experimental charset support for MySQL 4.1/5.0.
1476 \$wgDBmysql5 = {$conf->DBmysql5};
1477
1478 # Postgres specific settings
1479 \$wgDBport = \"{$slconf['DBport']}\";
1480 \$wgDBmwschema = \"{$slconf['DBmwschema']}\";
1481 \$wgDBts2schema = \"{$slconf['DBts2schema']}\";
1482
1483 ## Shared memory settings
1484 \$wgMainCacheType = $cacheType;
1485 \$wgMemCachedServers = $mcservers;
1486
1487 ## To enable image uploads, make sure the 'images' directory
1488 ## is writable, then set this to true:
1489 \$wgEnableUploads = false;
1490 {$magic}\$wgUseImageMagick = true;
1491 {$magic}\$wgImageMagickConvertCommand = \"{$convert}\";
1492
1493 ## If you want to use image uploads under safe mode,
1494 ## create the directories images/archive, images/thumb and
1495 ## images/temp, and make them all writable. Then uncomment
1496 ## this, if it's not already uncommented:
1497 {$hashedUploads}\$wgHashedUploadDirectory = false;
1498
1499 ## If you have the appropriate support software installed
1500 ## you can enable inline LaTeX equations:
1501 \$wgUseTeX = false;
1502
1503 \$wgLocalInterwiki = \$wgSitename;
1504
1505 \$wgLanguageCode = \"{$slconf['LanguageCode']}\";
1506
1507 \$wgProxyKey = \"$secretKey\";
1508
1509 ## Default skin: you can change the default skin. Use the internal symbolic
1510 ## names, ie 'standard', 'nostalgia', 'cologneblue', 'monobook':
1511 \$wgDefaultSkin = 'monobook';
1512
1513 ## For attaching licensing metadata to pages, and displaying an
1514 ## appropriate copyright notice / icon. GNU Free Documentation
1515 ## License and Creative Commons licenses are supported so far.
1516 {$rights}\$wgEnableCreativeCommonsRdf = true;
1517 \$wgRightsPage = \"\"; # Set to the title of a wiki page that describes your license/copyright
1518 \$wgRightsUrl = \"{$slconf['RightsUrl']}\";
1519 \$wgRightsText = \"{$slconf['RightsText']}\";
1520 \$wgRightsIcon = \"{$slconf['RightsIcon']}\";
1521 # \$wgRightsCode = \"{$slconf['RightsCode']}\"; # Not yet used
1522
1523 \$wgDiff3 = \"{$slconf['diff3']}\";
1524
1525 # When you make changes to this configuration file, this will make
1526 # sure that cached pages are cleared.
1527 \$configdate = gmdate( 'YmdHis', @filemtime( __FILE__ ) );
1528 \$wgCacheEpoch = max( \$wgCacheEpoch, \$configdate );
1529 "; ## End of setting the $localsettings string
1530
1531 // Keep things in Unix line endings internally;
1532 // the system will write out as local text type.
1533 return str_replace( "\r\n", "\n", $localsettings );
1534 }
1535
1536 function dieout( $text ) {
1537 die( $text . "\n\n</body>\n</html>" );
1538 }
1539
1540 function importVar( &$var, $name, $default = "" ) {
1541 if( isset( $var[$name] ) ) {
1542 $retval = $var[$name];
1543 if ( get_magic_quotes_gpc() ) {
1544 $retval = stripslashes( $retval );
1545 }
1546 } else {
1547 $retval = $default;
1548 }
1549 return $retval;
1550 }
1551
1552 function importPost( $name, $default = "" ) {
1553 return importVar( $_POST, $name, $default );
1554 }
1555
1556 function importCheck( $name ) {
1557 return isset( $_POST[$name] );
1558 }
1559
1560 function importRequest( $name, $default = "" ) {
1561 return importVar( $_REQUEST, $name, $default );
1562 }
1563
1564 $radioCount = 0;
1565
1566 function aField( &$conf, $field, $text, $type = "text", $value = "", $onclick = '' ) {
1567 global $radioCount;
1568 if( $type != "" ) {
1569 $xtype = "type=\"$type\"";
1570 } else {
1571 $xtype = "";
1572 }
1573
1574 $id = $field;
1575 $nolabel = ($type == "radio") || ($type == "hidden");
1576
1577 if ($type == 'radio')
1578 $id .= $radioCount++;
1579
1580 if( $nolabel ) {
1581 echo "\t\t<label>";
1582 } else {
1583 echo "\t\t<label class='column' for=\"$id\">$text</label>\n";
1584 }
1585
1586 if( $type == "radio" && $value == $conf->$field ) {
1587 $checked = "checked='checked'";
1588 } else {
1589 $checked = "";
1590 }
1591 echo "\t\t<input $xtype name=\"$field\" id=\"$id\" class=\"iput-$type\" $checked ";
1592 if ($onclick) {
1593 echo " onclick='toggleDBarea(\"$value\",1)' " ;
1594 }
1595 echo "value=\"";
1596 if( $type == "radio" ) {
1597 echo htmlspecialchars( $value );
1598 } else {
1599 echo htmlspecialchars( $conf->$field );
1600 }
1601
1602
1603 echo "\" />\n";
1604 if( $nolabel ) {
1605 echo " $text</label>\n";
1606 }
1607
1608 global $errs;
1609 if(isset($errs[$field])) echo "<span class='error'>" . $errs[$field] . "</span>\n";
1610 }
1611
1612 function getLanguageList() {
1613 global $wgLanguageNames;
1614 if( !isset( $wgLanguageNames ) ) {
1615 require_once( "languages/Names.php" );
1616 }
1617
1618 $codes = array();
1619
1620 $d = opendir( "../languages/messages" );
1621 /* In case we are called from the root directory */
1622 if (!$d)
1623 $d = opendir( "languages/messages");
1624 while( false !== ($f = readdir( $d ) ) ) {
1625 $m = array();
1626 if( preg_match( '/Messages([A-Z][a-z_]+)\.php$/', $f, $m ) ) {
1627 $code = str_replace( '_', '-', strtolower( $m[1] ) );
1628 if( isset( $wgLanguageNames[$code] ) ) {
1629 $name = $code . ' - ' . $wgLanguageNames[$code];
1630 } else {
1631 $name = $code;
1632 }
1633 $codes[$code] = $name;
1634 }
1635 }
1636 closedir( $d );
1637 ksort( $codes );
1638 return $codes;
1639 }
1640
1641 #Check for location of an executable
1642 # @param string $loc single location to check
1643 # @param array $names filenames to check for.
1644 # @param mixed $versioninfo array of details to use when checking version, use false for no version checking
1645 function locate_executable($loc, $names, $versioninfo = false) {
1646 if (!is_array($names))
1647 $names = array($names);
1648
1649 foreach ($names as $name) {
1650 $command = "$loc".DIRECTORY_SEPARATOR."$name";
1651 if (file_exists($command)) {
1652 if (!$versioninfo)
1653 return $command;
1654
1655 $file = str_replace('$1', $command, $versioninfo[0]);
1656 if (strstr(`$file`, $versioninfo[1]) !== false)
1657 return $command;
1658 }
1659 }
1660 return false;
1661 }
1662
1663 # Test a memcached server
1664 function testMemcachedServer( $server ) {
1665 $hostport = explode(":", $server);
1666 $errstr = false;
1667 $fp = false;
1668 if ( !function_exists( 'fsockopen' ) ) {
1669 $errstr = "Can't connect to memcached, fsockopen() not present";
1670 }
1671 if ( !$errstr && count( $hostport ) != 2 ) {
1672 $errstr = 'Please specify host and port';
1673 var_dump( $hostport );
1674 }
1675 if ( !$errstr ) {
1676 list( $host, $port ) = $hostport;
1677 $errno = 0;
1678 $fsockerr = '';
1679
1680 $fp = @fsockopen( $host, $port, $errno, $fsockerr, 1.0 );
1681 if ( $fp === false ) {
1682 $errstr = "Cannot connect to memcached on $host:$port : $fsockerr";
1683 }
1684 }
1685 if ( !$errstr ) {
1686 $command = "version\r\n";
1687 $bytes = fwrite( $fp, $command );
1688 if ( $bytes != strlen( $command ) ) {
1689 $errstr = "Cannot write to memcached socket on $host:$port";
1690 }
1691 }
1692 if ( !$errstr ) {
1693 $expected = "VERSION ";
1694 $response = fread( $fp, strlen( $expected ) );
1695 if ( $response != $expected ) {
1696 $errstr = "Didn't get correct memcached response from $host:$port";
1697 }
1698 }
1699 if ( $fp ) {
1700 fclose( $fp );
1701 }
1702 if ( !$errstr ) {
1703 echo "<li>Connected to memcached on $host:$port successfully";
1704 }
1705 return $errstr;
1706 }
1707
1708 function database_picker($conf) {
1709 global $ourdb;
1710 print "\n";
1711 foreach(array_keys($ourdb) as $db) {
1712 if ($ourdb[$db]['havedriver']) {
1713 print "<li>";
1714 aField( $conf, "DBtype", $ourdb[$db]['fullname'], 'radio', $db, 'onclick');
1715 print "</li>\n";
1716 }
1717 }
1718 print "\n";
1719 }
1720
1721 function database_switcher($db) {
1722 global $ourdb;
1723 $color = $ourdb[$db]['bgcolor'];
1724 $full = $ourdb[$db]['fullname'];
1725 print "<div id='$db' style='display:none; background: $color'>\n";
1726 print "<h3>$full specific options:</h3>\n";
1727 }
1728
1729 function printListItem( $item ) {
1730 print "<li>$item</li>";
1731 }
1732
1733 ?>
1734
1735 <div class="license">
1736 <hr>
1737 <p>This program is free software; you can redistribute it and/or modify
1738 it under the terms of the GNU General Public License as published by
1739 the Free Software Foundation; either version 2 of the License, or
1740 (at your option) any later version.</p>
1741
1742 <p>This program is distributed in the hope that it will be useful,
1743 but WITHOUT ANY WARRANTY; without even the implied warranty of
1744 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1745 GNU General Public License for more details.</p>
1746
1747 <p>You should have received <a href="../COPYING">a copy of the GNU General Public License</a>
1748 along with this program; if not, write to the Free Software
1749 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
1750 or <a href="http://www.gnu.org/copyleft/gpl.html">read it online</a></p>
1751 </div>
1752
1753 </div></div></div>
1754
1755
1756 <div id="column-one">
1757 <div class="portlet" id="p-logo">
1758 <a style="background-image: url(../skins/common/images/mediawiki.png);"
1759 href="http://www.mediawiki.org/"
1760 title="Main Page"></a>
1761 </div>
1762 <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script>
1763 <div class='portlet'><div class='pBody'>
1764 <ul>
1765 <li><strong><a href="http://www.mediawiki.org/">MediaWiki home</a></strong></li>
1766 <li><a href="../README">Readme</a></li>
1767 <li><a href="../RELEASE-NOTES">Release notes</a></li>
1768 <li><a href="../docs/">Documentation</a></li>
1769 <li><a href="http://meta.wikipedia.org/wiki/MediaWiki_User's_Guide">User's Guide</a></li>
1770 <li><a href="http://meta.wikimedia.org/wiki/MediaWiki_FAQ">FAQ</a></li>
1771 </ul>
1772 <p style="font-size:90%;margin-top:1em">MediaWiki is Copyright &copy; 2001-2007 by Magnus Manske, Brion Vibber, Lee Daniel Crocker, Tim Starling, Erik M&ouml;ller, Gabriel Wicke and others.</p>
1773 </div></div>
1774 </div>
1775
1776 </div>
1777
1778 </body>
1779 </html>