diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-07-04 14:50:07 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-07-04 16:35:14 +0200 |
commit | d01854fd75cfda51ccbb0827c5efda1e7387290e (patch) | |
tree | 3ba56e876fe535053083cd034a96d3a30a051780 | |
parent | 2dedc3aa577fbb0db2966f771008188ab850ec11 (diff) | |
download | nextcloud-server-d01854fd75cfda51ccbb0827c5efda1e7387290e.tar.gz nextcloud-server-d01854fd75cfda51ccbb0827c5efda1e7387290e.zip |
more verbose error message
-rw-r--r-- | apps/files_encryption/hooks/hooks.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index a511c5523f8..197982010f9 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() ) {
$error_msg = $l->t("Missing requirements.");
- $hint = $l->t('Please make sure that the OpenSSL module and PHP >= 5.3.3 is installed. 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 the OpenSSL 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);
|