summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--UPGRADING1
-rw-r--r--installer/index.php4
2 files changed, 3 insertions, 2 deletions
diff --git a/UPGRADING b/UPGRADING
index 52e170550..6362e0ca5 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -25,6 +25,7 @@ of RoundCube Webmail.
./SQL/[yourdbtype].update.sql that are superscribed with the
currently installed version number.
5. Make sure 'enable_installer' is set to false again.
+6. Check .htaccess settings (some php settings could become required)
For manually upgrading your RoundCube installation follow the instructions
diff --git a/installer/index.php b/installer/index.php
index 549b6f007..9f4c0a35e 100644
--- a/installer/index.php
+++ b/installer/index.php
@@ -47,9 +47,9 @@ if ($RCI->configured && ($RCI->getprop('enable_installer') || $_SESSION['allowin
exit;
}
-// go to 'test' step if we have a local configuration
+// go to 'check env' step if we have a local configuration
if ($RCI->configured && empty($_REQUEST['_step'])) {
- header("Location: ./?_step=3");
+ header("Location: ./?_step=1");
exit;
}