0

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

jww
  • 90,984
  • 81
  • 374
  • 818
B L Praveen
  • 1,636
  • 4
  • 28
  • 48

1 Answers1

0

Most likely the openssl.cnf file is not correctly configured or cannot be found. Please also check the openssl manual.

pgampe
  • 4,422
  • 1
  • 19
  • 29
  • I was getting "The ordinal error" because of incompatible version of php_openssl.dll file. And now I am able to install the typo3 – B L Praveen Jul 06 '17 at 13:24