Browse Source
Make the warning about wrong permissions more clear.
It's basically the same as for console.php now.
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
pull/16775/head
Daniel Kesselberg
6 years ago
No known key found for this signature in database
GPG Key ID: 36E3664E099D0614
1 changed files with
3 additions and
2 deletions
-
cron.php
|
|
|
@ -92,12 +92,13 @@ try { |
|
|
|
echo "The posix extensions are required - see http://php.net/manual/en/book.posix.php" . PHP_EOL; |
|
|
|
exit(1); |
|
|
|
} |
|
|
|
|
|
|
|
$user = posix_getpwuid(posix_getuid()); |
|
|
|
$configUser = posix_getpwuid(fileowner(OC::$configDir . 'config.php')); |
|
|
|
if ($user['name'] !== $configUser['name']) { |
|
|
|
echo "Console has to be executed with the same user as the web server is operated" . PHP_EOL; |
|
|
|
echo "Console has to be executed with the user that owns the file config/config.php" . PHP_EOL; |
|
|
|
echo "Current user: " . $user['name'] . PHP_EOL; |
|
|
|
echo "Web server user: " . $configUser['name'] . PHP_EOL; |
|
|
|
echo "Owner of config.php: " . $configUser['name'] . PHP_EOL; |
|
|
|
exit(1); |
|
|
|
} |
|
|
|
|
|
|
|
|