fix remote.php for servers which doesn't support PATH_INFO

This commit is contained in:
Georg Ehrke 2012-05-13 21:41:13 +02:00
parent 82d3fe2e1c
commit 3327aabe4d
1 changed files with 5 additions and 0 deletions

View File

@ -2,6 +2,11 @@
$RUNTIME_NOSETUPFS = true; $RUNTIME_NOSETUPFS = true;
//$RUNTIME_NOAPPS = TRUE; //$RUNTIME_NOAPPS = TRUE;
require_once('lib/base.php'); 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']; $path_info = $_SERVER['PATH_INFO'];
if (!$pos = strpos($path_info, '/', 1)) { if (!$pos = strpos($path_info, '/', 1)) {
$pos = strlen($path_info); $pos = strlen($path_info);