From: Friendika Date: Wed, 22 Dec 2010 22:07:27 +0000 (-0800) Subject: more notes on Windows install X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=eb6cefaea334fe02e3a77643eb1fc31eaaab5a6e;p=friendica.git more notes on Windows install --- diff --git a/mod/install.php b/mod/install.php index fa534fe12c..643f9a55cc 100644 --- a/mod/install.php +++ b/mod/install.php @@ -151,9 +151,10 @@ function check_keys() { // Get private key - if(! $res) - $o .= t('Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys') . EOL; - + if(! $res) { + $o .= t('Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys') . EOL; + $o .= t('If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".') . EOL; + } return $o; }