mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 12:39:25 +01:00
enable sqlfs_stream_wrapper to run under setup
This commit is contained in:
parent
cf4cd2aa3f
commit
1eb9acec27
@ -579,7 +579,7 @@ class sqlfs_stream_wrapper implements iface_stream_wrapper
|
|||||||
':fs_creator' => egw_vfs::$user,
|
':fs_creator' => egw_vfs::$user,
|
||||||
))) && $operation == self::STORE2FS)
|
))) && $operation == self::STORE2FS)
|
||||||
{
|
{
|
||||||
mkdir(self::_fs_path($path),0700,true); // we create all missing parent dirs, as eg. /home might not yet exist
|
$ok = mkdir($dir = self::_fs_path($path),0700,true); // we create all missing parent dirs, as eg. /home might not yet exist
|
||||||
}
|
}
|
||||||
return $ret;
|
return $ret;
|
||||||
}
|
}
|
||||||
@ -1329,6 +1329,20 @@ class sqlfs_stream_wrapper implements iface_stream_wrapper
|
|||||||
*/
|
*/
|
||||||
static private function _fs_path($path)
|
static private function _fs_path($path)
|
||||||
{
|
{
|
||||||
|
if (!isset($GLOBALS['egw_info']['server']['files_dir']) || $GLOBALS['egw_info']['server']['files_dir'])
|
||||||
|
{
|
||||||
|
if (is_object($GLOBALS['egw_setup']->db)) // if we run under setup, query the db for the files dir
|
||||||
|
{
|
||||||
|
$GLOBALS['egw_info']['server']['files_dir'] = $GLOBALS['egw_setup']->db->select('egw_config','config_value',array(
|
||||||
|
'config_name' => 'files_dir',
|
||||||
|
'config_app' => 'phpgwapi',
|
||||||
|
),__LINE__,__FILE__)->fetchSingle();
|
||||||
|
}
|
||||||
|
if (!$GLOBALS['egw_info']['server']['files_dir'])
|
||||||
|
{
|
||||||
|
throw new egw_exception_assertion_failed("\$GLOBALS['egw_info']['server']['files_dir'] not set!");
|
||||||
|
}
|
||||||
|
}
|
||||||
return $GLOBALS['egw_info']['server']['files_dir'].$path;
|
return $GLOBALS['egw_info']['server']['files_dir'].$path;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user