我在 2 个站点中遇到 cURL 问题
i have an issue with cURL in 2 sites
我在不同的机器上安装了 2 个 drupal
站点。在第一个,在列表中的状态报告中,我有:
cURL cURL library Enabled
只有带有 cURL 的那一行...在第二个 drupal
站点上,我有:
cURL cURL library Enabled
cURL Enabled
On the second file my module uses the cURL
perfect while on the first I cannot use the cURL
....
您能说说为什么会这样吗?我该如何解决这个问题??
可能是因为服务器上不存在curl 库。您可以尝试在机器上安装 curl 或不安装。可以从终端或仅使用代码创建 test.php:
// Check if curl module installed
if(!function_exists('curl_init')) {
throw new Exception("cURL module not installed.");
}
phpinfo();
如果 curl 库存在但未启用检查 php.ini 行 ';extension=php_curl.dll'。删除字符 ';'并重启服务器。我认为设置 php.
有问题
我在不同的机器上安装了 2 个 drupal
站点。在第一个,在列表中的状态报告中,我有:
cURL cURL library Enabled
只有带有 cURL 的那一行...在第二个 drupal
站点上,我有:
cURL cURL library Enabled
cURL Enabled
On the second file my module uses the
cURL
perfect while on the first I cannot use thecURL
....
您能说说为什么会这样吗?我该如何解决这个问题??
可能是因为服务器上不存在curl 库。您可以尝试在机器上安装 curl 或不安装。可以从终端或仅使用代码创建 test.php:
// Check if curl module installed
if(!function_exists('curl_init')) {
throw new Exception("cURL module not installed.");
}
phpinfo();
如果 curl 库存在但未启用检查 php.ini 行 ';extension=php_curl.dll'。删除字符 ';'并重启服务器。我认为设置 php.
有问题