1

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
  • 97,681
  • 90
  • 411
  • 885
B L Praveen
  • 1,812
  • 4
  • 35
  • 60

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,531
  • 1
  • 20
  • 31
  • 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