我完全不熟悉设置 Apache/PHP Web 服务器,但我必须这样做,因为我的 IT 人员不会。我已经查看了我可以在网上找到的所有内容,但我无法在 windows apache 上的 PHP 中加载 cURL。我安装了 Apache 2.2,它可以工作。我安装了 PHP,它可以工作,我知道这是因为我的 php 脚本检查以确保加载 cURL 扩展,并且我的 php 回显返回到浏览器,我的代码如下所示:
if (!extension_loaded("curl")) {
header('Status: 500', true, 500);
echo 'cURL extension for PHP is not loaded! <br/> Add the following lines to your php.ini file: <br/> extension_dir = "<your-php-install-location>/ext" <br/> extension = php_curl.dll';
return;
}
我做了以下事情:
- 我没有注释
extension_dir="c:\php\ext\"
(并尝试了该路径的多种变体,使用正斜杠和反斜杠等,以及./ext/
方法)。 - 我确保我
extension=php_curl.dll
的php.ini
. - 我已确保我的 apache 用户对 PHP 文件夹和所有子文件夹/文件具有读取和执行权限
- 我已经确定我
C:\PHP
的路径环境变量中有。 - 我在这里尝试了以下建议:Could not load php_curl和这里:PHP cURL is not loaded on modifying php.ini以及 StackOverflow 之外的许多其他内容。
没有任何效果。我在 Windows Server 2003 机器上运行。我在 Apache 日志中没有收到错误消息。我被困住了。请帮忙!谢谢。
添加请求的 Apache 日志信息:
[Tue Aug 14 14:38:22 2012] [warn] Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Aug 14 14:38:23 2012] [notice] Apache/2.2.22 (Win32) PHP/5.2.17 mod_ssl/2.2.22 OpenSSL/0.9.8t configured -- resuming normal operations
[Tue Aug 14 14:38:23 2012] [notice] Server built: Jan 28 2012 11:16:39
[Tue Aug 14 14:38:23 2012] [notice] Parent: Created child process 5616
[Tue Aug 14 14:38:24 2012] [warn] Init: Session Cache is not configured [hint: SSLSessionCache]
[Tue Aug 14 14:38:25 2012] [notice] Child 5616: Child process is running
[Tue Aug 14 14:38:25 2012] [notice] Child 5616: Acquired the start mutex.
[Tue Aug 14 14:38:25 2012] [notice] Child 5616: Starting 64 worker threads.
[Tue Aug 14 14:38:25 2012] [notice] Child 5616: Starting thread to listen on port 8080.