Merge pull request #3825 from dokuwiki-translate/lang_update_508_1667260139
[dokuwiki.git] / install.php
blob20f05a24908e1df36b2147c89f5bb4f42cdbea27
1 <?php
3 /*><div style="width:60%; margin: auto; background-color: #fcc;
4 border: 1px solid #faa; padding: 0.5em 1em;">
5 <h1 style="font-size: 120%">No PHP Support</h1>
7 It seems this server has no PHP support enabled. You will need to
8 enable PHP before you can install and run DokuWiki. Contact your hosting
9 provider if you're unsure what this means.
11 </div>*/
12 /**
13 * Dokuwiki installation assistance
15 * @author Chris Smith <chris@jalakai.co.uk>
18 if (!defined('DOKU_INC')) define('DOKU_INC', dirname(__FILE__) . '/');
19 if (!defined('DOKU_CONF')) define('DOKU_CONF', DOKU_INC . 'conf/');
20 if (!defined('DOKU_LOCAL')) define('DOKU_LOCAL', DOKU_INC . 'conf/');
22 // load and initialize the core system
23 require_once(DOKU_INC . 'inc/init.php');
24 require_once(DOKU_INC . 'inc/pageutils.php');
26 // check for error reporting override or set error reporting to sane values
27 if (!defined('DOKU_E_LEVEL')) {
28 error_reporting(E_ALL ^ E_NOTICE);
29 } else {
30 error_reporting(DOKU_E_LEVEL);
33 // language strings
34 require_once(DOKU_INC . 'inc/lang/en/lang.php');
35 if (isset($_REQUEST['l']) && !is_array($_REQUEST['l'])) {
36 $LC = preg_replace('/[^a-z\-]+/', '', $_REQUEST['l']);
38 if (empty($LC)) $LC = 'en';
39 if ($LC && $LC != 'en') {
40 require_once(DOKU_INC . 'inc/lang/' . $LC . '/lang.php');
43 // initialise variables ...
44 $error = array();
46 // begin output
47 header('Content-Type: text/html; charset=utf-8');
49 <!DOCTYPE html>
50 <html lang="<?php echo $LC?>" dir="<?php echo $lang['direction']?>">
51 <head>
52 <meta charset="utf-8" />
53 <title><?php echo $lang['i_installer']?></title>
54 <style>
55 body { width: 90%; margin: 0 auto; font: 84% Verdana, Helvetica, Arial, sans-serif; }
56 img { border: none }
57 br.cl { clear:both; }
58 code { font-size: 110%; color: #800000; }
59 fieldset { border: none }
60 label { display: block; margin-top: 0.5em; }
61 select.text, input.text { width: 30em; margin: 0 0.5em; }
62 a {text-decoration: none}
63 </style>
64 <script>
65 function acltoggle(){
66 var cb = document.getElementById('acl');
67 var fs = document.getElementById('acldep');
68 if(!cb || !fs) return;
69 if(cb.checked){
70 fs.style.display = '';
71 }else{
72 fs.style.display = 'none';
75 window.onload = function(){
76 acltoggle();
77 var cb = document.getElementById('acl');
78 if(cb) cb.onchange = acltoggle;
80 </script>
81 </head>
82 <body style="">
83 <h1 style="float:left">
84 <img src="lib/exe/fetch.php?media=wiki:dokuwiki-128.png"
85 style="vertical-align: middle;" alt="" height="64" width="64" />
86 <?php echo $lang['i_installer']?>
87 </h1>
88 <div style="float:right; margin: 1em;">
89 <?php langsel()?>
90 </div>
91 <br class="cl" />
93 <div style="float: right; width: 34%;">
94 <?php
95 if (file_exists(DOKU_INC . 'inc/lang/' . $LC . '/install.html')) {
96 include(DOKU_INC . 'inc/lang/' . $LC . '/install.html');
97 } else {
98 print "<div lang=\"en\" dir=\"ltr\">\n";
99 include(DOKU_INC . 'inc/lang/en/install.html');
100 print "</div>\n";
103 <a style="
104 background: transparent
105 url(data/dont-panic-if-you-see-this-in-your-logs-it-means-your-directory-permissions-are-correct.png)
106 left top no-repeat;
107 display: block; width:380px; height:73px; border:none; clear:both;"
108 target="_blank"
109 href="http://www.dokuwiki.org/security#web_access_security"></a>
110 </div>
112 <div style="float: left; width: 58%;">
113 <?php
114 try {
115 if (! (check_functions() && check_permissions())) {
116 echo '<p>' . $lang['i_problems'] . '</p>';
117 print_errors();
118 print_retry();
119 } elseif (!check_configs()) {
120 echo '<p>' . $lang['i_modified'] . '</p>';
121 print_errors();
122 } elseif (check_data($_REQUEST['d'])) {
123 // check_data has sanitized all input parameters
124 if (!store_data($_REQUEST['d'])) {
125 echo '<p>' . $lang['i_failure'] . '</p>';
126 print_errors();
127 } else {
128 echo '<p>' . $lang['i_success'] . '</p>';
130 } else {
131 print_errors();
132 print_form($_REQUEST['d']);
134 } catch (Exception $e) {
135 echo 'Caught exception: ', $e->getMessage(), "\n";
138 </div>
141 <div style="clear: both">
142 <a href="http://dokuwiki.org/"><img src="lib/tpl/dokuwiki/images/button-dw.png" alt="driven by DokuWiki" /></a>
143 <a href="http://php.net"><img src="lib/tpl/dokuwiki/images/button-php.gif" alt="powered by PHP" /></a>
144 </div>
145 </body>
146 </html>
147 <?php
150 * Print the input form
152 * @param array $d submitted entry 'd' of request data
154 function print_form($d)
156 global $lang;
157 global $LC;
159 include(DOKU_CONF . 'license.php');
161 if (!is_array($d)) $d = array();
162 $d = array_map('hsc', $d);
164 if (!isset($d['acl'])) $d['acl'] = 1;
165 if (!isset($d['pop'])) $d['pop'] = 1;
168 <form action="" method="post">
169 <input type="hidden" name="l" value="<?php echo $LC ?>" />
170 <fieldset>
171 <label for="title"><?php echo $lang['i_wikiname']?>
172 <input type="text" name="d[title]" id="title" value="<?php echo $d['title'] ?>" style="width: 20em;" />
173 </label>
175 <fieldset style="margin-top: 1em;">
176 <label for="acl">
177 <input type="checkbox" name="d[acl]" id="acl" <?php echo(($d['acl'] ? ' checked="checked"' : ''));?> />
178 <?php echo $lang['i_enableacl']?></label>
180 <fieldset id="acldep">
181 <label for="superuser"><?php echo $lang['i_superuser']?></label>
182 <input class="text" type="text" name="d[superuser]" id="superuser"
183 value="<?php echo $d['superuser'] ?>" />
185 <label for="fullname"><?php echo $lang['fullname']?></label>
186 <input class="text" type="text" name="d[fullname]" id="fullname"
187 value="<?php echo $d['fullname'] ?>" />
189 <label for="email"><?php echo $lang['email']?></label>
190 <input class="text" type="text" name="d[email]" id="email" value="<?php echo $d['email'] ?>" />
192 <label for="password"><?php echo $lang['pass']?></label>
193 <input class="text" type="password" name="d[password]" id="password" />
195 <label for="confirm"><?php echo $lang['passchk']?></label>
196 <input class="text" type="password" name="d[confirm]" id="confirm" />
198 <label for="policy"><?php echo $lang['i_policy']?></label>
199 <select class="text" name="d[policy]" id="policy">
200 <option value="0" <?php echo ($d['policy'] == 0) ? 'selected="selected"' : '' ?>><?php
201 echo $lang['i_pol0']?></option>
202 <option value="1" <?php echo ($d['policy'] == 1) ? 'selected="selected"' : '' ?>><?php
203 echo $lang['i_pol1']?></option>
204 <option value="2" <?php echo ($d['policy'] == 2) ? 'selected="selected"' : '' ?>><?php
205 echo $lang['i_pol2']?></option>
206 </select>
208 <label for="allowreg">
209 <input type="checkbox" name="d[allowreg]" id="allowreg" <?php
210 echo(($d['allowreg'] ? ' checked="checked"' : ''));?> />
211 <?php echo $lang['i_allowreg']?>
212 </label>
213 </fieldset>
214 </fieldset>
216 <fieldset>
217 <p><?php echo $lang['i_license']?></p>
218 <?php
219 array_push($license, array('name' => $lang['i_license_none'], 'url' => ''));
220 if (empty($d['license'])) $d['license'] = 'cc-by-sa';
221 foreach ($license as $key => $lic) {
222 echo '<label for="lic_' . $key . '">';
223 echo '<input type="radio" name="d[license]" value="' . hsc($key) . '" id="lic_' . $key . '"' .
224 (($d['license'] === $key) ? ' checked="checked"' : '') . '>';
225 echo hsc($lic['name']);
226 if ($lic['url']) echo ' <a href="' . $lic['url'] . '" target="_blank"><sup>[?]</sup></a>';
227 echo '</label>';
230 </fieldset>
232 <fieldset>
233 <p><?php echo $lang['i_pop_field']?></p>
234 <label for="pop">
235 <input type="checkbox" name="d[pop]" id="pop" <?php
236 echo(($d['pop'] ? ' checked="checked"' : ''));?> />
237 <?php echo $lang['i_pop_label']?>
238 <a href="http://www.dokuwiki.org/popularity" target="_blank"><sup>[?]</sup></a>
239 </label>
240 </fieldset>
242 </fieldset>
243 <fieldset id="process">
244 <button type="submit" name="submit"><?php echo $lang['btn_save']?></button>
245 </fieldset>
246 </form>
247 <?php
250 function print_retry()
252 global $lang;
253 global $LC;
255 <form action="" method="get">
256 <fieldset>
257 <input type="hidden" name="l" value="<?php echo $LC ?>" />
258 <button type="submit"><?php echo $lang['i_retry'];?></button>
259 </fieldset>
260 </form>
261 <?php
265 * Check validity of data
267 * @author Andreas Gohr
269 * @param array $d
270 * @return bool ok?
272 function check_data(&$d)
274 static $form_default = array(
275 'title' => '',
276 'acl' => '1',
277 'superuser' => '',
278 'fullname' => '',
279 'email' => '',
280 'password' => '',
281 'confirm' => '',
282 'policy' => '0',
283 'allowreg' => '0',
284 'license' => 'cc-by-sa'
286 global $lang;
287 global $error;
289 if (!is_array($d)) $d = array();
290 foreach ($d as $k => $v) {
291 if (is_array($v))
292 unset($d[$k]);
293 else $d[$k] = (string)$v;
296 //autolowercase the username
297 $d['superuser'] = isset($d['superuser']) ? strtolower($d['superuser']) : "";
299 $ok = false;
301 if (isset($_REQUEST['submit'])) {
302 $ok = true;
304 // check input
305 if (empty($d['title'])) {
306 $error[] = sprintf($lang['i_badval'], $lang['i_wikiname']);
307 $ok = false;
309 if (isset($d['acl'])) {
310 if (empty($d['superuser']) || ($d['superuser'] !== cleanID($d['superuser']))) {
311 $error[] = sprintf($lang['i_badval'], $lang['i_superuser']);
312 $ok = false;
314 if (empty($d['password'])) {
315 $error[] = sprintf($lang['i_badval'], $lang['pass']);
316 $ok = false;
317 } elseif (!isset($d['confirm']) || $d['confirm'] != $d['password']) {
318 $error[] = sprintf($lang['i_badval'], $lang['passchk']);
319 $ok = false;
321 if (empty($d['fullname']) || strstr($d['fullname'], ':')) {
322 $error[] = sprintf($lang['i_badval'], $lang['fullname']);
323 $ok = false;
325 if (empty($d['email']) || strstr($d['email'], ':') || !strstr($d['email'], '@')) {
326 $error[] = sprintf($lang['i_badval'], $lang['email']);
327 $ok = false;
329 } else {
330 // Since default = 1, browser won't send acl=0 when user untick acl
331 $d['acl'] = '0';
334 $d = array_merge($form_default, $d);
335 return $ok;
339 * Writes the data to the config files
341 * @author Chris Smith <chris@jalakai.co.uk>
343 * @param array $d
344 * @return bool
346 function store_data($d)
348 global $LC;
349 $ok = true;
350 $d['policy'] = (int) $d['policy'];
352 // create local.php
353 $now = gmdate('r');
354 $output = <<<EOT
355 <?php
357 * Dokuwiki's Main Configuration File - Local Settings
358 * Auto-generated by install script
359 * Date: $now
362 EOT;
363 // add any config options set by a previous installer
364 $preset = __DIR__ . '/install.conf';
365 if (file_exists($preset)) {
366 $output .= "# preset config options\n";
367 $output .= file_get_contents($preset);
368 $output .= "\n\n";
369 $output .= "# options selected in installer\n";
370 @unlink($preset);
373 $output .= '$conf[\'title\'] = \'' . addslashes($d['title']) . "';\n";
374 $output .= '$conf[\'lang\'] = \'' . addslashes($LC) . "';\n";
375 $output .= '$conf[\'license\'] = \'' . addslashes($d['license']) . "';\n";
376 if ($d['acl']) {
377 $output .= '$conf[\'useacl\'] = 1' . ";\n";
378 $output .= "\$conf['superuser'] = '@admin';\n";
380 if (!$d['allowreg']) {
381 $output .= '$conf[\'disableactions\'] = \'register\'' . ";\n";
383 $ok = $ok && fileWrite(DOKU_LOCAL . 'local.php', $output);
385 if ($d['acl']) {
386 // hash the password
387 $phash = new \dokuwiki\PassHash();
388 $pass = $phash->hash_bcrypt($d['password']);
390 // create users.auth.php
391 $output = <<<EOT
392 # users.auth.php
393 # <?php exit()?>
394 # Don't modify the lines above
396 # Userfile
398 # Auto-generated by install script
399 # Date: $now
401 # Format:
402 # login:passwordhash:Real Name:email:groups,comma,separated
404 EOT;
405 // --- user:bcryptpasswordhash:Real Name:email:groups,comma,seperated
406 $output = $output . "\n" . join(':', [
407 $d['superuser'],
408 $pass,
409 $d['fullname'],
410 $d['email'],
411 'admin,user',
412 ]) . "\n";
413 $ok = $ok && fileWrite(DOKU_LOCAL . 'users.auth.php', $output);
415 // create acl.auth.php
416 $output = <<<EOT
417 # acl.auth.php
418 # <?php exit()?>
419 # Don't modify the lines above
421 # Access Control Lists
423 # Auto-generated by install script
424 # Date: $now
426 EOT;
427 if ($d['policy'] == 2) {
428 $output .= "* @ALL 0\n";
429 $output .= "* @user 8\n";
430 } elseif ($d['policy'] == 1) {
431 $output .= "* @ALL 1\n";
432 $output .= "* @user 8\n";
433 } else {
434 $output .= "* @ALL 8\n";
436 $ok = $ok && fileWrite(DOKU_LOCAL . 'acl.auth.php', $output);
439 // enable popularity submission
440 if (isset($d['pop']) && $d['pop']) {
441 @touch(DOKU_INC . 'data/cache/autosubmit.txt');
444 // disable auth plugins til needed
445 $output = <<<EOT
446 <?php
448 * Local plugin enable/disable settings
450 * Auto-generated by install script
451 * Date: $now
454 \$plugins['authad'] = 0;
455 \$plugins['authldap'] = 0;
456 \$plugins['authmysql'] = 0;
457 \$plugins['authpgsql'] = 0;
459 EOT;
460 $ok = $ok && fileWrite(DOKU_LOCAL . 'plugins.local.php', $output);
462 return $ok;
466 * Write the given content to a file
468 * @author Chris Smith <chris@jalakai.co.uk>
470 * @param string $filename
471 * @param string $data
472 * @return bool
474 function fileWrite($filename, $data)
476 global $error;
477 global $lang;
479 if (($fp = @fopen($filename, 'wb')) === false) {
480 $filename = str_replace($_SERVER['DOCUMENT_ROOT'], '{DOCUMENT_ROOT}/', $filename);
481 $error[] = sprintf($lang['i_writeerr'], $filename);
482 return false;
485 if (!empty($data)) {
486 fwrite($fp, $data);
488 fclose($fp);
489 return true;
494 * check installation dependent local config files and tests for a known
495 * unmodified main config file
497 * @author Chris Smith <chris@jalakai.co.uk>
499 * @return bool
501 function check_configs()
503 global $error;
504 global $lang;
506 $ok = true;
508 $config_files = array(
509 'local' => DOKU_LOCAL . 'local.php',
510 'users' => DOKU_LOCAL . 'users.auth.php',
511 'auth' => DOKU_LOCAL . 'acl.auth.php'
514 // configs shouldn't exist
515 foreach ($config_files as $file) {
516 if (file_exists($file) && filesize($file)) {
517 $file = str_replace($_SERVER['DOCUMENT_ROOT'], '{DOCUMENT_ROOT}/', $file);
518 $error[] = sprintf($lang['i_confexists'], $file);
519 $ok = false;
522 return $ok;
527 * Check other installation dir/file permission requirements
529 * @author Chris Smith <chris@jalakai.co.uk>
531 * @return bool
533 function check_permissions()
535 global $error;
536 global $lang;
538 $dirs = array(
539 'conf' => DOKU_LOCAL,
540 'data' => DOKU_INC . 'data',
541 'pages' => DOKU_INC . 'data/pages',
542 'attic' => DOKU_INC . 'data/attic',
543 'media' => DOKU_INC . 'data/media',
544 'media_attic' => DOKU_INC . 'data/media_attic',
545 'media_meta' => DOKU_INC . 'data/media_meta',
546 'meta' => DOKU_INC . 'data/meta',
547 'cache' => DOKU_INC . 'data/cache',
548 'locks' => DOKU_INC . 'data/locks',
549 'index' => DOKU_INC . 'data/index',
550 'tmp' => DOKU_INC . 'data/tmp'
553 $ok = true;
554 foreach ($dirs as $dir) {
555 if (!file_exists("$dir/.") || !is_writable($dir)) {
556 $dir = str_replace($_SERVER['DOCUMENT_ROOT'], '{DOCUMENT_ROOT}', $dir);
557 $error[] = sprintf($lang['i_permfail'], $dir);
558 $ok = false;
561 return $ok;
565 * Check the availability of functions used in DokuWiki and the PHP version
567 * @author Andreas Gohr <andi@splitbrain.org>
569 * @return bool
571 function check_functions()
573 global $error;
574 global $lang;
575 $ok = true;
577 if (version_compare(phpversion(), '5.6.0', '<')) {
578 $error[] = sprintf($lang['i_phpver'], phpversion(), '5.6.0');
579 $ok = false;
582 if (ini_get('mbstring.func_overload') != 0) {
583 $error[] = $lang['i_mbfuncoverload'];
584 $ok = false;
587 try {
588 random_bytes(1);
589 } catch (\Exception $th) {
590 // If an appropriate source of randomness cannot be found, an Exception will be thrown by PHP 7+
591 $error[] = $lang['i_urandom'];
592 $ok = false;
595 if (ini_get('mbstring.func_overload') != 0) {
596 $error[] = $lang['i_mbfuncoverload'];
597 $ok = false;
600 $funcs = explode(' ', 'addslashes call_user_func chmod copy fgets ' .
601 'file file_exists fseek flush filesize ftell fopen ' .
602 'glob header ignore_user_abort ini_get mkdir ' .
603 'ob_start opendir parse_ini_file readfile realpath ' .
604 'rename rmdir serialize session_start unlink usleep ' .
605 'preg_replace file_get_contents htmlspecialchars_decode ' .
606 'spl_autoload_register stream_select fsockopen pack xml_parser_create');
608 if (!function_exists('mb_substr')) {
609 $funcs[] = 'utf8_encode';
610 $funcs[] = 'utf8_decode';
613 if (!function_exists('mail')) {
614 if (strpos(ini_get('disable_functions'), 'mail') !== false) {
615 $disabled = $lang['i_disabled'];
616 } else {
617 $disabled = "";
619 $error[] = sprintf($lang['i_funcnmail'], $disabled);
622 foreach ($funcs as $func) {
623 if (!function_exists($func)) {
624 $error[] = sprintf($lang['i_funcna'], $func);
625 $ok = false;
628 return $ok;
632 * Print language selection
634 * @author Andreas Gohr <andi@splitbrain.org>
636 function langsel()
638 global $lang;
639 global $LC;
641 $dir = DOKU_INC . 'inc/lang';
642 $dh = opendir($dir);
643 if (!$dh) return;
645 $langs = array();
646 while (($file = readdir($dh)) !== false) {
647 if (preg_match('/^[\._]/', $file)) continue;
648 if (is_dir($dir . '/' . $file) && file_exists($dir . '/' . $file . '/lang.php')) {
649 $langs[] = $file;
652 closedir($dh);
653 sort($langs);
655 echo '<form action="">';
656 echo $lang['i_chooselang'];
657 echo ': <select name="l" onchange="submit()">';
658 foreach ($langs as $l) {
659 $sel = ($l == $LC) ? 'selected="selected"' : '';
660 echo '<option value="' . $l . '" ' . $sel . '>' . $l . '</option>';
662 echo '</select> ';
663 echo '<button type="submit">' . $lang['btn_update'] . '</button>';
664 echo '</form>';
668 * Print global error array
670 * @author Andreas Gohr <andi@splitbrain.org>
672 function print_errors()
674 global $error;
675 if (!empty($error)) {
676 echo '<ul>';
677 foreach ($error as $err) {
678 echo "<li>$err</li>";
680 echo '</ul>';