问题
I am testing if openssl is enabled and returns keys. Though openssl is enabled it is not returing keys. When tried to install the TYPO3 the error message is appearing.
if (extension_loaded('openssl')) {
$testKey = @openssl_pkey_new();
if (is_resource($testKey)) {
} else {
echo ' Please check the integration of the PHP OpenSSL extension and if it is installed correctly.';
}
}
Please help to continue installation. Thanks
回答1:
Most likely the openssl.cnf
file is not correctly configured or cannot be found. Please also check the openssl manual.
来源:https://stackoverflow.com/questions/44906381/test-for-openssl-enabled-fails