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.
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
);
30 error_reporting(DOKU_E_LEVEL
);
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 ...
47 header('Content-Type: text/html; charset=utf-8');
50 <html lang
="<?php echo $LC?>" dir
="<?php echo $lang['direction']?>">
52 <meta charset
="utf-8" />
53 <title
><?php
echo $lang['i_installer']?
></title
>
55 body
{ width
: 90%
; margin
: 0 auto
; font
: 84% Verdana
, Helvetica
, Arial
, sans
-serif
; }
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
}
66 var cb
= document
.getElementById('acl');
67 var fs
= document
.getElementById('acldep');
68 if(!cb ||
!fs
) return;
70 fs
.style
.display
= '';
72 fs
.style
.display
= 'none';
75 window
.onload
= function(){
77 var cb
= document
.getElementById('acl');
78 if(cb
) cb
.onchange
= acltoggle
;
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']?
>
88 <div style
="float:right; margin: 1em;">
93 <div style
="float: right; width: 34%;">
95 if (file_exists(DOKU_INC
. 'inc/lang/' . $LC . '/install.html')) {
96 include(DOKU_INC
. 'inc/lang/' . $LC . '/install.html');
98 print "<div lang=\"en\" dir=\"ltr\">\n";
99 include(DOKU_INC
. 'inc/lang/en/install.html');
104 background: transparent
105 url(data/dont-panic-if-you-see-this-in-your-logs-it-means-your-directory-permissions-are-correct.png)
107 display: block; width:380px; height:73px; border:none; clear:both;"
109 href
="http://www.dokuwiki.org/security#web_access_security"></a
>
112 <div style
="float: left; width: 58%;">
115 if (! (check_functions() && check_permissions())) {
116 echo '<p>' . $lang['i_problems'] . '</p>';
119 } elseif (!check_configs()) {
120 echo '<p>' . $lang['i_modified'] . '</p>';
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>';
128 echo '<p>' . $lang['i_success'] . '</p>';
132 print_form($_REQUEST['d']);
134 } catch (Exception
$e) {
135 echo 'Caught exception: ', $e->getMessage(), "\n";
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
>
150 * Print the input form
152 * @param array $d submitted entry 'd' of request data
154 function print_form($d)
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 ?>" />
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;" />
175 <fieldset style
="margin-top: 1em;">
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
>
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']?
>
217 <p
><?php
echo $lang['i_license']?
></p
>
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>';
233 <p
><?php
echo $lang['i_pop_field']?
></p
>
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
>
243 <fieldset id
="process">
244 <button type
="submit" name
="submit"><?php
echo $lang['btn_save']?
></button
>
250 function print_retry()
255 <form action
="" method
="get">
257 <input type
="hidden" name
="l" value
="<?php echo $LC ?>" />
258 <button type
="submit"><?php
echo $lang['i_retry'];?
></button
>
265 * Check validity of data
267 * @author Andreas Gohr
272 function check_data(&$d)
274 static $form_default = array(
284 'license' => 'cc-by-sa'
289 if (!is_array($d)) $d = array();
290 foreach ($d as $k => $v) {
293 else $d[$k] = (string)$v;
296 //autolowercase the username
297 $d['superuser'] = isset($d['superuser']) ?
strtolower($d['superuser']) : "";
301 if (isset($_REQUEST['submit'])) {
305 if (empty($d['title'])) {
306 $error[] = sprintf($lang['i_badval'], $lang['i_wikiname']);
309 if (isset($d['acl'])) {
310 if (empty($d['superuser']) ||
($d['superuser'] !== cleanID($d['superuser']))) {
311 $error[] = sprintf($lang['i_badval'], $lang['i_superuser']);
314 if (empty($d['password'])) {
315 $error[] = sprintf($lang['i_badval'], $lang['pass']);
317 } elseif (!isset($d['confirm']) ||
$d['confirm'] != $d['password']) {
318 $error[] = sprintf($lang['i_badval'], $lang['passchk']);
321 if (empty($d['fullname']) ||
strstr($d['fullname'], ':')) {
322 $error[] = sprintf($lang['i_badval'], $lang['fullname']);
325 if (empty($d['email']) ||
strstr($d['email'], ':') ||
!strstr($d['email'], '@')) {
326 $error[] = sprintf($lang['i_badval'], $lang['email']);
330 // Since default = 1, browser won't send acl=0 when user untick acl
334 $d = array_merge($form_default, $d);
339 * Writes the data to the config files
341 * @author Chris Smith <chris@jalakai.co.uk>
346 function store_data($d)
350 $d['policy'] = (int) $d['policy'];
357 * Dokuwiki's Main Configuration File - Local Settings
358 * Auto-generated by install script
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);
369 $output .= "# options selected in installer\n";
373 $output .= '$conf[\'title\'] = \'' . addslashes($d['title']) . "';\n";
374 $output .= '$conf[\'lang\'] = \'' . addslashes($LC) . "';\n";
375 $output .= '$conf[\'license\'] = \'' . addslashes($d['license']) . "';\n";
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);
387 $phash = new \dokuwiki\
PassHash();
388 $pass = $phash->hash_bcrypt($d['password']);
390 // create users.auth.php
394 # Don't modify the lines above
398 # Auto-generated by install script
402 # login:passwordhash:Real Name:email:groups,comma,separated
405 // --- user:bcryptpasswordhash:Real Name:email:groups,comma,seperated
406 $output = $output . "\n" . join(':', [
413 $ok = $ok && fileWrite(DOKU_LOCAL
. 'users.auth.php', $output);
415 // create acl.auth.php
419 # Don't modify the lines above
421 # Access Control Lists
423 # Auto-generated by install script
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";
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
448 * Local plugin enable/disable settings
450 * Auto-generated by install script
454 \$plugins['authad'] = 0;
455 \$plugins['authldap'] = 0;
456 \$plugins['authmysql'] = 0;
457 \$plugins['authpgsql'] = 0;
460 $ok = $ok && fileWrite(DOKU_LOCAL
. 'plugins.local.php', $output);
466 * Write the given content to a file
468 * @author Chris Smith <chris@jalakai.co.uk>
470 * @param string $filename
471 * @param string $data
474 function fileWrite($filename, $data)
479 if (($fp = @fopen
($filename, 'wb')) === false) {
480 $filename = str_replace($_SERVER['DOCUMENT_ROOT'], '{DOCUMENT_ROOT}/', $filename);
481 $error[] = sprintf($lang['i_writeerr'], $filename);
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>
501 function check_configs()
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);
527 * Check other installation dir/file permission requirements
529 * @author Chris Smith <chris@jalakai.co.uk>
533 function check_permissions()
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'
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);
565 * Check the availability of functions used in DokuWiki and the PHP version
567 * @author Andreas Gohr <andi@splitbrain.org>
571 function check_functions()
577 if (version_compare(phpversion(), '5.6.0', '<')) {
578 $error[] = sprintf($lang['i_phpver'], phpversion(), '5.6.0');
582 if (ini_get('mbstring.func_overload') != 0) {
583 $error[] = $lang['i_mbfuncoverload'];
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'];
595 if (ini_get('mbstring.func_overload') != 0) {
596 $error[] = $lang['i_mbfuncoverload'];
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'];
619 $error[] = sprintf($lang['i_funcnmail'], $disabled);
622 foreach ($funcs as $func) {
623 if (!function_exists($func)) {
624 $error[] = sprintf($lang['i_funcna'], $func);
632 * Print language selection
634 * @author Andreas Gohr <andi@splitbrain.org>
641 $dir = DOKU_INC
. 'inc/lang';
646 while (($file = readdir($dh)) !== false) {
647 if (preg_match('/^[\._]/', $file)) continue;
648 if (is_dir($dir . '/' . $file) && file_exists($dir . '/' . $file . '/lang.php')) {
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>';
663 echo '<button type="submit">' . $lang['btn_update'] . '</button>';
668 * Print global error array
670 * @author Andreas Gohr <andi@splitbrain.org>
672 function print_errors()
675 if (!empty($error)) {
677 foreach ($error as $err) {
678 echo "<li>$err</li>";