1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-05-20 17:58:24 +03:00

возможность установки в подкаталоги

This commit is contained in:
Mzhelskiy Maxim 2010-03-06 11:36:11 +00:00
parent 986b9acbbd
commit a6f43d5630
2 changed files with 3 additions and 3 deletions

View file

@ -98,7 +98,7 @@ class Router extends Object {
* @return string
*/
protected function GetRequestUri() {
$sReq=preg_replace("/\/+/",'/',$_SERVER['REQUEST_URI']);
$sReq=preg_replace("/\/+/",'/',str_replace(preg_replace("@/*index\.php@U",'',$_SERVER['PHP_SELF']),'',$_SERVER['REQUEST_URI']));
$sReq=preg_replace("/^\/(.*)\/?$/U",'\\1',$sReq);
$sReq=preg_replace("/^(.*)\/\?.*$/U",'\\1',$sReq);

View file

@ -1515,11 +1515,11 @@ class Install {
}
function GetPathRootWeb() {
return rtrim('http://'.$_SERVER['HTTP_HOST'],'/');
return rtrim('http://'.$_SERVER['HTTP_HOST'],'/').str_replace('/install/index.php','',$_SERVER['PHP_SELF']);
}
function GetPathRootServer() {
return rtrim($_SERVER['DOCUMENT_ROOT'],'/');
return rtrim(dirname(dirname(__FILE__)),'/');
}
}