diff --git a/infolog/inc/class.vfs.inc.php b/infolog/inc/class.vfs.inc.php index e32b50f38b..70e66fc87e 100644 --- a/infolog/inc/class.vfs.inc.php +++ b/infolog/inc/class.vfs.inc.php @@ -99,6 +99,19 @@ function vfs () { $this->basedir = $GLOBALS['phpgw_info']['server']['files_dir']; + + // test if the files-dir is inside the document-root, and refuse working if so + // + if (strstr($this->basedir,PHPGW_SERVER_ROOT) || strstr($this->basedir,$GLOBALS['HTTP_SERVER_VARS']['DOCUMENT_ROOT'])) + { + $GLOBALS['phpgw']->common->phpgw_header(); + if ($GLOBALS['phpgw_info']['flags']['noheader']) + { + echo parse_navbar(); + } + echo '
'.lang('Path to user and group files HAS TO BE OUTSIDE of the webservers document-root!!!')."
\n"; + $GLOBALS['phpgw']->common->phpgw_exit(); + } $this->fakebase = "/home"; $this->working_id = $GLOBALS['phpgw_info']['user']['account_id']; $this->working_lid = $GLOBALS['phpgw']->accounts->id2name($this->working_id);