Wordpress 未检测到 curl

Wordpress 未检测到 curl

我在 ubuntu 18.04.2 LTS 上安装了 wordpress。我的 Curl 版本是 curl 7.58.0

当我启用 WooCommerce PayPal Checkout Gateway 时,我收到错误消息。“WooCommerce Gateway PayPal Checkout 需要在您的服务器上安装 cURL”。

关于如何让 woocommerce 检测 curl,有什么帮助吗?

答案1

听起来你安装了 curl 但没有安装 php-curl。使用 apt 安装它:

sudo apt install php-curl

然后重新启动apache:

systemctl restart apache2

...然后您就可以出发了。

答案2

安装特定版本的 php curl 包。

如果您运行的是 PHP 版本:7.3,请安装php7.3-curl

apt install php7.3-curl

相关内容