Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Ehrke <dev@georgswebsite.de>2012-05-13 23:41:13 +0400
committerGeorg Ehrke <dev@georgswebsite.de>2012-05-13 23:46:34 +0400
commit3327aabe4d4f47ec6c2da5af7f2aea60f21f9a2e (patch)
tree3285302415d7ba356298f2b50f4bcecdc0b55e99 /remote.php
parent82d3fe2e1c740d2ddc1bcb0aa8ce59d058c1e7f5 (diff)
fix remote.php for servers which doesn't support PATH_INFO
Diffstat (limited to 'remote.php')
-rw-r--r--remote.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/remote.php b/remote.php
index 2a7ab167d04..e115fc5073b 100644
--- a/remote.php
+++ b/remote.php
@@ -2,6 +2,11 @@
$RUNTIME_NOSETUPFS = true;
//$RUNTIME_NOAPPS = TRUE;
require_once('lib/base.php');
+if (array_key_exists('PATH_INFO', $_SERVER)){
+ $path_info = $_SERVER['PATH_INFO'];
+}else{
+ $path_info = substr($_SERVER['PHP_SELF'], strpos($_SERVER['PHP_SELF'], basename(__FILE__)) + strlen(basename(__FILE__)));
+}
$path_info = $_SERVER['PATH_INFO'];
if (!$pos = strpos($path_info, '/', 1)) {
$pos = strlen($path_info);