aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/index.php
diff options
context:
space:
mode:
authorGraham Eames <grahamje@users.sourceforge.net>2006-07-07 20:47:25 +0000
committerGraham Eames <grahamje@users.sourceforge.net>2006-07-07 20:47:25 +0000
commit63dbf43693bd4f63682da1d55533bd34ff3f0d46 (patch)
tree63eb39562c650186ab1871143843c82946de356c /phpBB/install/index.php
parent97cd5b1c3de8ce063ffbbfed17c36fd6b31f9761 (diff)
downloadforums-63dbf43693bd4f63682da1d55533bd34ff3f0d46.tar
forums-63dbf43693bd4f63682da1d55533bd34ff3f0d46.tar.gz
forums-63dbf43693bd4f63682da1d55533bd34ff3f0d46.tar.bz2
forums-63dbf43693bd4f63682da1d55533bd34ff3f0d46.tar.xz
forums-63dbf43693bd4f63682da1d55533bd34ff3f0d46.zip
Change redirection logic to match the RFC better in those cases before redirect() is available to us
git-svn-id: file:///svn/phpbb/trunk@6154 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/index.php')
-rwxr-xr-xphpBB/install/index.php33
1 files changed, 33 insertions, 0 deletions
diff --git a/phpBB/install/index.php b/phpBB/install/index.php
index 51ab82ba3c..d22545a56a 100755
--- a/phpBB/install/index.php
+++ b/phpBB/install/index.php
@@ -373,6 +373,39 @@ class module
}
/**
+ * Generate an HTTP/1.1 header to redirect the user to another page
+ * This is used during the installation when we do not have a database available to call the normal redirect function
+ * @param string $page The page to redirect to relative to the installer root path
+ */
+ function redirect($page)
+ {
+ $server_name = (!empty($_SERVER['SERVER_NAME'])) ? $_SERVER['SERVER_NAME'] : getenv('SERVER_NAME');
+ $server_port = (!empty($_SERVER['SERVER_PORT'])) ? (int) $_SERVER['SERVER_PORT'] : (int) getenv('SERVER_PORT');
+ $secure = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 1 : 0;
+
+ $script_name = (!empty($_SERVER['PHP_SELF'])) ? $_SERVER['PHP_SELF'] : getenv('PHP_SELF');
+ if (!$script_name)
+ {
+ $script_name = (!empty($_SERVER['REQUEST_URI'])) ? $_SERVER['REQUEST_URI'] : getenv('REQUEST_URI');
+ }
+
+ // Replace backslashes and doubled slashes (could happen on some proxy setups)
+ $script_name = str_replace(array('\\', '//'), '/', $script_name);
+ $script_path = trim(dirname($script_name));
+
+ $url = (($secure) ? 'https://' : 'http://') . $server_name;
+
+ if ($server_port && (($secure && $server_port <> 443) || (!$secure && $server_port <> 80)))
+ {
+ $url .= ':' . $server_port;
+ }
+
+ $url .= $script_path . '/' . $page;
+ header('Location: ' . $url);
+ exit;
+ }
+
+ /**
* Generate the navigation tabs
*/
function generate_navigation()