PHP OpenSSL extension not working while installing TYPO3 6.2.2 on Windows 7

后端 未结 6 1519
北海茫月
北海茫月 2020-12-31 05:21

I\'ve installed TYPO3 6.2.2 on Windows 7 but I got an error message as below:

PHP OpenSSL extension not working Something went wrong while trying to create a ne

6条回答
  •  长发绾君心
    2020-12-31 05:47

    Solution that worked for me on XAMPP and Windows Vista:

    • Activate the PHP module openssl

      Open php.ini and uncomment(delete ';') in:

      ;extension=php_openssl.dll

      Double-check that the extension is enabled by running phpinfo().

    • Add a system environment variable "OPENSSL_CONF" with value

      C:\xampp\apache\conf\openssl.cnf

      ...assuming you installed xampp into C:\xampp.

    • Set path to 'openssl.exe', which is in C:\xampp\apache\bin

      • Either set $TYPO3_CONF_VARS['SYS']['binSetup'] in ...\htdocs\typo3_src-6.2.x\typo3\sysext\core\Configuration\DefaultConfiguration.php to 'openssl=c:/xampp/apache/bin/openssl.exe'

      • or append c:\xampp\apache\bin to the environment variable PATH (will work for every PHP script not only TYPO3)

    • Restart xampp

    Links/sources:

    • http://wiki.typo3.org/Exception/CMS/1318283565

    • http://www.typo3.net/forum/thematik/zeige/thema/116156/

提交回复
热议问题