13

今日、Windows 7 コンピューターに最新の WAMP ( wampserver.comから) をインストールしました。

で SSL を有効にしましたPHP > PHP Extensions > php_openssl

Apache > Apache Modules > open_ssl

しかし、https:// で何かにアクセスしようとすると、「ページの読み込みに問題があります」というメッセージが表示されます。apache_error.log は言う

[Thu Jun 27 16:25:08.622056 2013] [ssl:warn] [pid 4812:tid 356] AH01882: Init: this version of mod_ssl was compiled against a newer library (OpenSSL 1.0.1e 11 Feb 2013, version currently loaded is OpenSSL 1.0.1d 5 Feb 2013) - may result in undefined or erroneous behavior


[Thu Jun 27 16:25:08.973076 2013] [ssl:warn] [pid 4812:tid 356] AH01882: Init: this version of mod_ssl was compiled against a newer library (OpenSSL 1.0.1e 11 Feb 2013, version currently loaded is OpenSSL 1.0.1d 5 Feb 2013) - may result in undefined or erroneous behavior


[Thu Jun 27 16:25:09.356098 2013] [ssl:warn] [pid 4812:tid 356] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]


[Thu Jun 27 16:25:09.365099 2013] [mpm_winnt:notice] [pid 4812:tid 356] AH00455: Apache/2.4.4 (Win64) OpenSSL/1.0.1d PHP/5.4.12 configured -- resuming normal operations

[Thu Jun 27 16:25:09.365099 2013] [mpm_winnt:notice] [pid 4812:tid 356] AH00456: Server built: Feb 22 2013 22:08:37

[Thu Jun 27 16:25:09.365099 2013] [core:notice] [pid 4812:tid 356] AH00094: Command line: 'c:\\wamp\\bin\\apache\\apache2.4.4\\bin\\httpd.exe -d C:/wamp/bin/apache/Apache2.4.4'

[Thu Jun 27 16:25:09.366099 2013] [mpm_winnt:notice] [pid 4812:tid 356] AH00418: Parent: Created child process 3452

[Thu Jun 27 16:25:09.664116 2013] [ssl:warn] [pid 3452:tid 248] AH01882: Init: this version of mod_ssl was compiled against a newer library (OpenSSL 1.0.1e 11 Feb 2013, version currently loaded is OpenSSL 1.0.1d 5 Feb 2013) - may result in undefined or erroneous behavior

[Thu Jun 27 16:25:09.954132 2013] [ssl:warn] [pid 3452:tid 248] AH01882: Init: this version of mod_ssl was compiled against a newer library (OpenSSL 1.0.1e 11 Feb 2013, version currently loaded is OpenSSL 1.0.1d 5 Feb 2013) - may result in undefined or erroneous behavior

[Thu Jun 27 16:25:10.327154 2013] [ssl:warn] [pid 3452:tid 248] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]


[Thu Jun 27 16:25:10.339154 2013] [mpm_winnt:notice] [pid 3452:tid 248] AH00354: Child: Starting 150 worker threads.
4

6 に答える 6

37

php.ini へのパス [composer に必要な場合] は C:\wamp\bin\php\php5.4.x\php.ini です。このファイルは、Wamp トレイ アイコンをナビゲートした場合に表示されるファイルとは異なります。

そこに行き、@milesstewart88が言うようにセミコロンを削除します

于 2013-11-01T12:09:11.497 に答える
25

php.ini ファイルで openssl 拡張機能のコメントを外してください。

例えば。;extension=php_openssl.dll

セミコロンを外すとこんな感じ。

extension=php_openssl.dll

それはうまくいくはずです。それは私のために働いた。

于 2013-06-29T11:47:46.610 に答える
23

間違った openssl ファイルでリリースされた Apache 2.4.4 の Wampserver。ここから 1.0.1e openssl をダウンロードしてインストールします: http://slproweb.com/products/Win32OpenSSL.html

次に、インストールされたディレクトリで次のファイルを見つけます。

bin\openssl.cfg

bin\libeay32.dll

bin\ssleay32.dll

bin\openssl.exe

Apache サーバーを停止します。最初に、それらのバックアップを保存します。次に、Apache ディレクトリ内のこれらのファイルを上書きします。

conf\openssl.cnf-> ここで cfg の名前を変更します

bin\libeay32.dll

bin\ssleay32.dll

bin\openssl.exe

サーバーを再起動します。解決しました。

于 2013-07-18T08:38:52.930 に答える
4

Apache 2.4.4を搭載したWampserverでは、これでうまくいき ました。たとえば、SSL キーと証明書を含むディレクトリを既に作成しているとします。
c:/wamp/OpenSSL

httpd.confのコメントを外します:

LoadModule socache_shmcb_module modules/mod_socache_shmcb.so  
LoadModule log_config_module modules/mod_log_config.so  
LoadModule setenvif_module modules/mod_setenvif.so  
LoadModule ssl_module modules/mod_ssl.so

# Secure (SSL/TLS) connections
<IfModule ssl_module>
    Include conf/extra/httpd-ssl.conf
</IfModule>

httpd-ssl.confで編集:

SSLSessionCache "shmcb:c:/wamp/OpenSSL/logs/ssl_scache(512000)"  

<VirtualHost _default_:443>
    DocumentRoot "c:/wamp/www" 
    ServerName localhost:443
    ErrorLog "c:/wamp/logs/error.log"
    TransferLog "c:/wamp/logs/access.log"
    SSLCertificateFile "c:/wamp/OpenSSL/certs/server.crt"
    SSLCertificateKeyFile "c:/wamp/OpenSSL/certs/server.key"
    <Directory "c:/wamp/www">
        SSLOptions +StdEnvVars
    </Directory>
    CustomLog "c:/wamp/logs/ssl_request.log" \
      "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
</VirtualHost>

php.iniのコメントを外します:extension=php_openssl.dll

于 2014-03-19T21:10:13.703 に答える
1

milesstewart88 が言ったように、php.ini ファイルの行 extension=php_openssl.dll のコメントを外します。

ワンプメニューからそれを行うとうまくいきません-これは実際の問題から誤解を招く可能性があります.

于 2014-10-02T09:40:25.200 に答える
1

私がこれをどのように管理したかを参照してください..

uncomment below line from <WEBroot>/bin/apache/Apache2.x/conf/httpd.conf

LoadModule ssl_module modules/mod_ssl.so

           &

Include conf/extra/httpd-ssl.conf

証明書とキーを「wwwssl」と言う別のフォルダーに配置します

AND GOT TO <WEBroot>/bin/apache/Apache2.x/conf/extra/httpd-ssl.conf

目的のサーバーの仮想ホストを作成します。たとえば、以下を参照してください。

<VirtualHost _default_:443>
    DocumentRoot "<WEBroot>/www/"
    ServerName localhost
    SSLEngine on
    SSLCertificateFile "<WEBroot>/wwwssl/webserver.cert"
    SSLCertificateKeyFile "<WEBroot>/wwwssl/webserver.key"

    <FilesMatch "\.(cgi|shtml|phtml|php)$">
        SSLOptions +StdEnvVars
    </FilesMatch>
</VirtualHost>                                  
于 2014-02-03T11:53:16.850 に答える