2

XAMPPでopensslサポートを有効にしようとしています。私はこれらの指示に従いましたが、エラーが発生しました:

1.  Open php.ini and  uncomment the following:  extension=php_openssl.dll

2.  Make sure you have config the following section pointing to your 
php install directory (in my case is located in a second partition at 
e:\php)

3.  Directory in which the loadable extensions (modules) reside.
extension_dir = "e:/php/ext"

4.  Add your php directory to the PATH variable
start>run>type cmd
on windows console type:
set PATH=%PATH%;e:\php
(remember replace e:\php with YOUR directory)
(note that using %path% is the same as var+=value, so the directory 
will be appended at the end of the variable)

5.  php5 comes with all the dll in the zip package so if you add the php 
directory to the path variable, you don't need to move anything to your 
windows system directory (very safe for later updates, because you just 
replace the content of your php directory)

6.  start>run>inetsrv/iis.msc
right click on your computer
all task>restart IIS

調べてみるphpinfo()と、opensslサポートが有効になっていると表示されます。

しかし、コマンドラインを実行しようとすると、エラーが発生します。

openssl.cnf not found. 

このエラーはどういう意味ですか、そして私は何を間違えましたか?

4

1 に答える 1

4

xamppサーバーでopenssl、curl、およびintlを有効にするには、以下の手順に従います。

注意:上記の手順は問題ありませんが、コード編集の初心者の場合はどこにも行きません

  1. xamppサーバーがインストールされている場所を開きます。たとえば、サーバーがインストールされている場所C:\xampp or C:\program files\xamppによって異なります。

  2. xamppサーバーがインストールされているフォルダーで検索バーを検索します

  3. またはと入力し、メモ帳C:\xampp\php\php.iniまたはC:\program files\xampp\php\php.iniワードパッドを使用してphp.iniファイルを開きます

  4. 次に、が表示されるまでスクロールし;extension=openssl.dll, ;extension=curl.dll, ;extension=intl.dll、コメント(;)を削除して、ファイルを保存します

  5. サーバーを終了して再起動してサーバーをシャットダウンします

于 2013-09-18T07:30:14.367 に答える