安装后配置wampserver以启用ssl

时间:2011-01-23 13:57:54

标签: php apache ssl wampserver

我使用Apache v2.2.17和PHP v5.3.5安装了wampserver。 当我使用带有HTTPS URL的函数file_get_contents()作为参数时,我收到以下警告:

  

警告:file_get_contents()   [function.file-get-contents]:无法使用   找到包装“https” - 你呢?   忘了在你的时候启用它   配置PHP?在   第22行的C:\ wamp \ www \ fbapp \ index.php

有没有办法配置wampserver以启用SSL而无需重新安装它?

2 个答案:

答案 0 :(得分:37)

我查了一下你应该:

  1. 检查Apache模块中的ssl_module
  2. 检查PHP扩展中的php_openssl
  3. 工作! :)

答案 1 :(得分:0)

再检查一下:

如果找不到文件,也可能会出错。所以使用这个:

$f=@file_get_contents(path);

if($f){
    // your code here...
}