From: Bjoern Schiessle Date: Thu, 1 Aug 2013 11:57:12 +0000 (+0200) Subject: improved error message to refect openSSL PHP extension and stock openSSL configuratio... X-Git-Tag: v6.0.0alpha2~346 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7ce03ba37c7ff45f2ee529c37469236a0a661725;p=nextcloud-server.git improved error message to refect openSSL PHP extension and stock openSSL configuration issues --- diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index e933207a9e1..07da839e8a2 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -42,7 +42,7 @@ class Hooks { //check if all requirements are met if(!Helper::checkRequirements() || !Helper::checkConfiguration() ) { $error_msg = $l->t("Missing requirements."); - $hint = $l->t('Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled.'); + $hint = $l->t('Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.'); \OC_App::disable('files_encryption'); \OCP\Util::writeLog('Encryption library', $error_msg . ' ' . $hint, \OCP\Util::ERROR); \OCP\Template::printErrorPage($error_msg, $hint);