From c70d6cee34ddc4be4dc136fe8421929100a13fd8 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Sat, 16 Feb 2013 20:24:25 +0100 Subject: disable additional auth plugins in installer --- install.php | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) (limited to 'install.php') diff --git a/install.php b/install.php index f54c25207..2db25bd2f 100644 --- a/install.php +++ b/install.php @@ -54,7 +54,8 @@ $dokuwiki_hash = array( '2011-05-25' => '4241865472edb6fa14a1227721008072', '2011-11-10' => 'b46ff19a7587966ac4df61cbab1b8b31', '2012-01-25' => '72c083c73608fc43c586901fd5dabb74', - '2012-09-10' => 'eb0b3fc90056fbc12bac6f49f7764df3' + '2012-09-10' => 'eb0b3fc90056fbc12bac6f49f7764df3', + 'devel' => '7b62b75245f57f122d3e0f8ed7989623', ); @@ -391,6 +392,24 @@ EOT; @touch(DOKU_INC.'data/cache/autosubmit.txt'); } + // disable auth plugins til needed + $output = << Date: Wed, 6 Mar 2013 14:02:31 +0100 Subject: Release preparations --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install.php') diff --git a/install.php b/install.php index 2db25bd2f..330a47d52 100644 --- a/install.php +++ b/install.php @@ -55,7 +55,7 @@ $dokuwiki_hash = array( '2011-11-10' => 'b46ff19a7587966ac4df61cbab1b8b31', '2012-01-25' => '72c083c73608fc43c586901fd5dabb74', '2012-09-10' => 'eb0b3fc90056fbc12bac6f49f7764df3', - 'devel' => '7b62b75245f57f122d3e0f8ed7989623', + '2013-04-06' => '7b62b75245f57f122d3e0f8ed7989623', ); -- cgit v1.2.3 From ab38a3220676a13042d13f3784fc517c5f6f66e4 Mon Sep 17 00:00:00 2001 From: lupo49 Date: Sun, 31 Mar 2013 20:44:06 +0200 Subject: install.php: Added pack() to required DokuWiki PHP functions (FS#2761) --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install.php') diff --git a/install.php b/install.php index 330a47d52..33f3406a3 100644 --- a/install.php +++ b/install.php @@ -529,7 +529,7 @@ function check_functions(){ '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'); + 'spl_autoload_register stream_select fsockopen pack'); if (!function_exists('mb_substr')) { $funcs[] = 'utf8_encode'; -- cgit v1.2.3 From c5270434ae13b347d8357f578d10543804b17a3a Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Fri, 19 Apr 2013 09:35:02 +0200 Subject: browser-based logo resizing in install.php FS#2763 server side resizing now needs a security hash which we can' provide in the installer, yet. --- install.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'install.php') diff --git a/install.php b/install.php index 33f3406a3..53ef4a175 100644 --- a/install.php +++ b/install.php @@ -97,8 +97,8 @@ header('Content-Type: text/html; charset=utf-8');

- +

-- cgit v1.2.3 From 2a5a1456564635ddbca06edbc902e7f820d2a97b Mon Sep 17 00:00:00 2001 From: Guy Brand Date: Fri, 10 May 2013 14:34:29 +0200 Subject: Release preparation --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install.php') diff --git a/install.php b/install.php index 53ef4a175..24f06608d 100644 --- a/install.php +++ b/install.php @@ -55,7 +55,7 @@ $dokuwiki_hash = array( '2011-11-10' => 'b46ff19a7587966ac4df61cbab1b8b31', '2012-01-25' => '72c083c73608fc43c586901fd5dabb74', '2012-09-10' => 'eb0b3fc90056fbc12bac6f49f7764df3', - '2013-04-06' => '7b62b75245f57f122d3e0f8ed7989623', + '2013-05-10' => '7b62b75245f57f122d3e0f8ed7989623', ); -- cgit v1.2.3 From 21c9604e66bcb42ab5267e9873738a6e22250103 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Sun, 2 Jun 2013 21:48:31 +0200 Subject: we now require PHP 5.2.0 at least --- install.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'install.php') diff --git a/install.php b/install.php index 24f06608d..ab0fad121 100644 --- a/install.php +++ b/install.php @@ -518,8 +518,8 @@ function check_functions(){ global $lang; $ok = true; - if(version_compare(phpversion(),'5.1.2','<')){ - $error[] = sprintf($lang['i_phpver'],phpversion(),'5.1.2'); + if(version_compare(phpversion(),'5.2.0','<')){ + $error[] = sprintf($lang['i_phpver'],phpversion(),'5.2.0'); $ok = false; } -- cgit v1.2.3