Check for the posix extension - refs https://github.com/owncloud/core/pull/13282#issuecomment-69602645
This commit is contained in:
parent
793e1e8d6e
commit
1f01552325
1 changed files with 4 additions and 0 deletions
|
@ -23,6 +23,10 @@ try {
|
|||
}
|
||||
|
||||
if (!OC_Util::runningOnWindows()) {
|
||||
if (!function_exists('posix_getuid')) {
|
||||
echo "The posix extensions are required - see http://php.net/manual/en/book.posix.php" . PHP_EOL;
|
||||
exit(0);
|
||||
}
|
||||
$user = posix_getpwuid(posix_getuid());
|
||||
$configUser = posix_getpwuid(fileowner(OC::$SERVERROOT . '/config/config.php'));
|
||||
if ($user['name'] !== $configUser['name']) {
|
||||
|
|
Loading…
Reference in a new issue