How to enable HTTPS stream wrappers

前端 未结 4 1042
夕颜
夕颜 2020-11-27 21:09

I installed php5 on my windows system and tried to execute the following script with a command-line console:



        
相关标签:
4条回答
  • 2020-11-27 21:25

    Simple. I had this error and gave me such headaches. Enable (uncomment the line extension=php_openssl.dll) in your php.ini file. This will solve the issue.

    0 讨论(0)
  • 2020-11-27 21:30

    1: Check which wrappers are installed.

    <?php var_dump(stream_get_wrappers()); ?>
    

    2: If you dont see "https" on the list, add to/uncomment from php.ini

    extension=php_openssl.dll
    

    Restart your server*, and your done.

    *if server fails to restart go download php_openssl.dll from someplace and stick it in your extensions directory defined in the php.ini file, restart server, say a few hell mary's and pray.

    0 讨论(0)
  • 2020-11-27 21:30

    Open php.ini. Find this line:

    ;;;;;;;;;;;;;;;;;;;;;;
    ; Dynamic Extensions ;
    ;;;;;;;;;;;;;;;;;;;;;;
    ; ...
    ;extension=ext/php_oci8.dll
    extension=ext/php_openssl.dll         ; <---- you want this
    ;extension=ext/php_pdo_firebird.dll
    ; ...
    

    you want to uncomment the extension=ext/php_openssl.dll line. Make sure there is a pho_openssl.dll file in the ext/ directory, relative to your php.ini (or maybe more importantly to the extension_dir variable in the ini).

    0 讨论(0)
  • 2020-11-27 21:52

    The file_get_contents line, at the end of your script, is trying to send an HTTPS request -- see the URL in $req, which starts by 'https://ec2...'.

    For this to be possible, PHP needs a "wrapper" to send HTTPS requests -- which doesn't seem to be installed on your system ; which means you cannot send HTTPS requests using the fopen familly of functions.

    For more informations about stream wrappers, if you are curious, you can take a look at List of Supported Protocols/Wrappers, and, in your case, HTTP and HTTPS.

    You'll either have to install the HTTPs wrapper -- on Windows, I have no idea how to do that, unfortunately...


    Or you'll have to use something else that file_get_contents to send your HTTPS request -- I would use the functions provided by the curl extension (Here, too, not sure it will work "out of the box", though :-( ).

    For an example, you can take a look at what's proposed on the manual page of curl_exec :

    // create a new cURL resource
    $ch = curl_init();
    
    // set URL and other appropriate options
    curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");
    curl_setopt($ch, CURLOPT_HEADER, 0);
    
    // grab URL and pass it to the browser
    curl_exec($ch);
    
    // close cURL resource, and free up system resources
    curl_close($ch);
    

    Note you'll probably have to set a couple more options, using curl_setopt -- you should go through that page : there are a lot of useful options ;-)


    As a sidenote, you are using this line at the beginning of your script :

    $creds = parse_ini_file('/etc/aws.conf');
    

    The path /etc/aws.conf feels strange, as you said you are using a Windows system : this looks like the kind of path one would use on an UNIX/Linux system.

    0 讨论(0)
提交回复
热议问题