Amppsを使ってPHPのテストをしていたのですが、httpsで始まるページを取得しようとしたところ、次のような警告が。
Warning: file_get_contents() [function.file-get-contents]: Unable to find the wrapper “https” – did you forget to enable it when you configured PHP?
「PHPの設定は合っているか?」みたいなことのようです。
対処法は次の通り。
「…\Ampps\apache\php.ini」というファイルがあります。
;extension=php_openssl.dll
となっている行があるので次のように先頭のセミコロンを削除します。
extension=php_openssl.dll
これでAmppsを再起動すると警告が消えました。Windows7で確認しました。
コメント