dokuwiki install.php,install.php

/*>

No PHP Support

It seems this server has no PHP support enabled. You will need to

enable PHP before you can install and run DokuWiki. Contact your hosting

provider if you're unsure what this means.

*/

/**

* Dokuwiki installation assistance

*

* @author Chris Smith

*/

if(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/');

if(!defined('DOKU_CONF')) define('DOKU_CONF',DOKU_INC.'conf/');

if(!defined('DOKU_LOCAL')) define('DOKU_LOCAL',DOKU_INC.'conf/');

// load and initialize the core system

require_once(DOKU_INC.'inc/init.php');

// check for error reporting override or set error reporting to sane values

if (!defined('DOKU_E_LEVEL')) { error_reporting(E_ALL ^ E_NOTICE); }

else { error_reporting(DOKU_E_LEVEL); }

// language strings

require_once(DOKU_INC.'inc/lang/en/lang.php');

if(isset($_REQUEST['l']) && !is_array($_REQUEST['l'])) {

$LC = preg_replace('/[^a-z\-]+/','',$_REQUEST['l']);

}

if(empty($LC)) $LC = 'en';

if($LC && $LC != 'en' ) {

require_once(DOKU_INC.'inc/lang/'.$LC.'/lang.php');

}

// initialise variables ...

$error = array();

// begin output

header('Content-Type: text/html; charset=utf-8');

?>

<?php echo $lang['i_installer']?>

body { width: 90%; margin: 0 auto; font: 84% Verdana, Helvetica, Arial, sans-serif; }

img { border: none }

br.cl { clear:both; }

code { font-size: 110%; color: #800000; }

fieldset { border: none }

label { display: block; margin-top: 0.5em; }

select.text, input.text { width: 30em; margin: 0 0.5em; }

a {text-decoration: none}

function acltoggle(){

var cb = document.getElementById('acl');

var fs = document.getElementById('acldep');

if(!cb || !fs) return;

if(cb.checked){

fs.style.display = '';

}else{

fs.style.display = 'none';

}

}

window.onload = function(){

acltoggle();

var cb = document.getElementById('acl');

if(cb) cb.onchange = acltoggle;

};

fetch.php?media=wiki:dokuwiki-128.png

style="vertical-align: middle;" alt="" height="64" width="64" />

if(file_exists(DOKU_INC.'inc/lang/'.$LC.'/install.html')){

include(DOKU_INC.'inc/lang/'.$LC.'/install.html');

}else{

print "

\n";

include(DOKU_INC.'inc/lang/en/install.html');

print "

\n";

}

?>

target="_blank"

href="http://www.dokuwiki.org/security#web_access_security">

try {

if(! (check_functions() && check_permissions()) ){

echo '

'.$lang['i_problems'].'

';

print_errors();

print_retry();

}elseif(!check_configs()){

echo '

'.$lang['i_modified'].'

';

print_errors();

}elseif(check_data($_REQUEST['d'])){

// check_data has sanitized all input parameters

if(!store_data($_REQUEST['d'])){

echo '

'.$lang['i_failure'].'

';

print_errors();

}else{

echo '

'.$lang['i_success'].'

';

}

}else{

print_errors();

print_form($_REQUEST['d']);

}

} catch (Exception $e) {

echo 'Caught exception: ', $e->getMessage(), "\n";

}

?>

driven by DokuWiki

powered by PHP

/**

* Print the input form

*

* @param array $d submitted entry 'd' of request data

*/

function print_form($d){

global $lang;

global $LC;

include(DOKU_CONF.'license.php');

if(!is_array($d)) $d = array();

$d = array_map('hsc',$d);

if(!isset($d['acl'])) $d['acl']=1;

if(!isset($d['pop'])) $d['pop']=1;

?>

/>

><?php echo $lang['i_pol0']?>

><?php echo $lang['i_pol1']?>

><?php echo $lang['i_pol2']?>

/>

array_push($license,array('name' => $lang['i_license_none'], 'url'=>''));

if(empty($d['license'])) $d['license'] = 'cc-by-sa';

foreach($license as $key => $lic){

echo '';

echo '

(($d['license'] === $key)?' checked="checked"':'').'>';

echo hsc($lic['name']);

if($lic['url']) echo ' [?]';

echo '';

}

?>

/>

<?php echo $lang['i_pop_label']?> [?]

}

function print_retry() {

global $lang;

global $LC;

?>

}

/**

* Check validity of data

*

* @author Andreas Gohr

*

* @param array $d

* @return bool ok?

*/

function check_data(&$d){

static $form_default = array(

'title' => '',

'acl' => '1',

'superuser' => '',

'fullname' => '',

'email' => '',

'password' => '',

'confirm' => '',

'policy' => '0',

'allowreg' => '0',

'license' => 'cc-by-sa'

);

global $lang;

global $error;

if(!is_array($d)) $d = array();

foreach($d as $k => $v) {

if(is_array($v))

unset($d[$k]);

else

$d[$k] = (string)$v;

}

//autolowercase the username

$d['superuser'] = isset($d['superuser']) ? strtolower($d['superuser']) : "";

$ok = false;

if(isset($_REQUEST['submit'])) {

$ok = true;

// check input

if(empty($d['title'])){

$error[] = sprintf($lang['i_badval'],$lang['i_wikiname']);

$ok = false;

}

if(isset($d['acl'])){

if(!preg_match('/^[a-z0-9_]+$/',$d['superuser'])){

$error[] = sprintf($lang['i_badval'],$lang['i_superuser']);

$ok = false;

}

if(empty($d['password'])){

$error[] = sprintf($lang['i_badval'],$lang['pass']);

$ok = false;

}

elseif(!isset($d['confirm']) || $d['confirm'] != $d['password']){

$error[] = sprintf($lang['i_badval'],$lang['passchk']);

$ok = false;

}

if(empty($d['fullname']) || strstr($d['fullname'],':')){

$error[] = sprintf($lang['i_badval'],$lang['fullname']);

$ok = false;

}

if(empty($d['email']) || strstr($d['email'],':') || !strstr($d['email'],'@')){

$error[] = sprintf($lang['i_badval'],$lang['email']);

$ok = false;

}

}

}

$d = array_merge($form_default, $d);

return $ok;

}

/**

* Writes the data to the config files

*

* @author Chris Smith

*

* @param array $d

* @return bool

*/

function store_data($d){

global $LC;

$ok = true;

$d['policy'] = (int) $d['policy'];

// create local.php

$now = gmdate('r');

$output = <<

/**

* Dokuwiki's Main Configuration File - Local Settings

* Auto-generated by install script

* Date: $now

*/

EOT;

// add any config options set by a previous installer

$preset = __DIR__.'/install.conf';

if(file_exists($preset)){

$output .= "# preset config options\n";

$output .= file_get_contents($preset);

$output .= "\n\n";

$output .= "# options selected in installer\n";

@unlink($preset);

}

$output .= '$conf[\'title\'] = \''.addslashes($d['title'])."';\n";

$output .= '$conf[\'lang\'] = \''.addslashes($LC)."';\n";

$output .= '$conf[\'license\'] = \''.addslashes($d['license'])."';\n";

if($d['acl']){

$output .= '$conf[\'useacl\'] = 1'.";\n";

$output .= "\$conf['superuser'] = '@admin';\n";

}

if(!$d['allowreg']){

$output .= '$conf[\'disableactions\'] = \'register\''.";\n";

}

$ok = $ok && fileWrite(DOKU_LOCAL.'local.php',$output);

if ($d['acl']) {

// hash the password

$phash = new PassHash();

$pass = $phash->hash_smd5($d['password']);

// create users.auth.php

// --- user:SMD5password:Real Name:email:groups,comma,seperated

$output = join(":",array($d['superuser'], $pass, $d['fullname'], $d['email'], 'admin,user'));

$output = @file_get_contents(DOKU_CONF.'users.auth.php.dist')."\n$output\n";

$ok = $ok && fileWrite(DOKU_LOCAL.'users.auth.php', $output);

// create acl.auth.php

$output = <<

# acl.auth.php

# <?php exit()?>

# Don't modify the lines above

#

# Access Control Lists

#

# Auto-generated by install script

# Date: $now

EOT;

if($d['policy'] == 2){

$output .= "* @ALL 0\n";

$output .= "* @user 8\n";

}elseif($d['policy'] == 1){

$output .= "* @ALL 1\n";

$output .= "* @user 8\n";

}else{

$output .= "* @ALL 8\n";

}

$ok = $ok && fileWrite(DOKU_LOCAL.'acl.auth.php', $output);

}

// enable popularity submission

if($d['pop']){

@touch(DOKU_INC.'data/cache/autosubmit.txt');

}

// disable auth plugins til needed

$output = <<

/*

* Local plugin enable/disable settings

*

* Auto-generated by install script

* Date: $now

*/

\$plugins['authad'] = 0;

\$plugins['authldap'] = 0;

\$plugins['authmysql'] = 0;

\$plugins['authpgsql'] = 0;

EOT;

$ok = $ok && fileWrite(DOKU_LOCAL.'plugins.local.php', $output);

return $ok;

}

/**

* Write the given content to a file

*

* @author Chris Smith

*

* @param string $filename

* @param string $data

* @return bool

*/

function fileWrite($filename, $data) {

global $error;

global $lang;

if (($fp = @fopen($filename, 'wb')) === false) {

$filename = str_replace($_SERVER['DOCUMENT_ROOT'],'{DOCUMENT_ROOT}/', $filename);

$error[] = sprintf($lang['i_writeerr'],$filename);

return false;

}

if (!empty($data)) { fwrite($fp, $data); }

fclose($fp);

return true;

}

/**

* check installation dependent local config files and tests for a known

* unmodified main config file

*

* @author Chris Smith

*

* @return bool

*/

function check_configs(){

global $error;

global $lang;

$ok = true;

$config_files = array(

'local' => DOKU_LOCAL.'local.php',

'users' => DOKU_LOCAL.'users.auth.php',

'auth' => DOKU_LOCAL.'acl.auth.php'

);

// configs shouldn't exist

foreach ($config_files as $file) {

if (file_exists($file) && filesize($file)) {

$file = str_replace($_SERVER['DOCUMENT_ROOT'],'{DOCUMENT_ROOT}/', $file);

$error[] = sprintf($lang['i_confexists'],$file);

$ok = false;

}

}

return $ok;

}

/**

* Check other installation dir/file permission requirements

*

* @author Chris Smith

*

* @return bool

*/

function check_permissions(){

global $error;

global $lang;

$dirs = array(

'conf' => DOKU_LOCAL,

'data' => DOKU_INC.'data',

'pages' => DOKU_INC.'data/pages',

'attic' => DOKU_INC.'data/attic',

'media' => DOKU_INC.'data/media',

'media_attic' => DOKU_INC.'data/media_attic',

'media_meta' => DOKU_INC.'data/media_meta',

'meta' => DOKU_INC.'data/meta',

'cache' => DOKU_INC.'data/cache',

'locks' => DOKU_INC.'data/locks',

'index' => DOKU_INC.'data/index',

'tmp' => DOKU_INC.'data/tmp'

);

$ok = true;

foreach($dirs as $dir){

if(!file_exists("$dir/.") || !is_writable($dir)){

$dir = str_replace($_SERVER['DOCUMENT_ROOT'],'{DOCUMENT_ROOT}', $dir);

$error[] = sprintf($lang['i_permfail'],$dir);

$ok = false;

}

}

return $ok;

}

/**

* Check the availability of functions used in DokuWiki and the PHP version

*

* @author Andreas Gohr

*

* @return bool

*/

function check_functions(){

global $error;

global $lang;

$ok = true;

if(version_compare(phpversion(),'5.6.0','

$error[] = sprintf($lang['i_phpver'],phpversion(),'5.6.0');

$ok = false;

}

if(ini_get('mbstring.func_overload') != 0){

$error[] = $lang['i_mbfuncoverload'];

$ok = false;

}

$funcs = explode(' ','addslashes call_user_func chmod copy fgets '.

'file file_exists fseek flush filesize ftell fopen '.

'glob header ignore_user_abort ini_get mail mkdir '.

'ob_start opendir parse_ini_file readfile realpath '.

'rename rmdir serialize session_start unlink usleep '.

'preg_replace file_get_contents htmlspecialchars_decode '.

'spl_autoload_register stream_select fsockopen pack');

if (!function_exists('mb_substr')) {

$funcs[] = 'utf8_encode';

$funcs[] = 'utf8_decode';

}

foreach($funcs as $func){

if(!function_exists($func)){

$error[] = sprintf($lang['i_funcna'],$func);

$ok = false;

}

}

return $ok;

}

/**

* Print language selection

*

* @author Andreas Gohr

*/

function langsel(){

global $lang;

global $LC;

$dir = DOKU_INC.'inc/lang';

$dh = opendir($dir);

if(!$dh) return;

$langs = array();

while (($file = readdir($dh)) !== false) {

if(preg_match('/^[\._]/',$file)) continue;

if(is_dir($dir.'/'.$file) && file_exists($dir.'/'.$file.'/lang.php')){

$langs[] = $file;

}

}

closedir($dh);

sort($langs);

echo '

';

echo $lang['i_chooselang'];

echo ': ';

foreach($langs as $l){

$sel = ($l == $LC) ? 'selected="selected"' : '';

echo ''.$l.'';

}

echo ' ';

echo ''.$lang['btn_update'].'';

echo '';

}

/**

* Print global error array

*

* @author Andreas Gohr

*/

function print_errors(){

global $error;

if(!empty($error)) {

echo '

  • ';

foreach ($error as $err){

echo "

$err";

}

echo '';

}

}

一键复制

编辑

Web IDE

原始数据

按行查看

历史

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值