Rya*_*orn 3 php wordpress ssl curl mamp
我有一个在 MAMP Pro (macos) 上本地运行的网站,并且在使用时不断收到 cURL 错误wp_remote_get()
我搜索并尝试了多种解决方案,但似乎没有任何效果。
我的代码:
$url = site_url() . '/wp-json/wp/v2/my-cpt'; // This works just fine and shows up in the browser correctly
$response = wp_remote_get( $url ); // this outputs the cURL error: "cURL error 60: SSL certificate problem: unable to get local issuer certificate"
Run Code Online (Sandbox Code Playgroud)
我有:
这更多的是本地解决方法。您可以在本地站点内禁用 SSL 验证。这可以通过将此行添加到文件中wp-includes/functions.php或
/wp-content/themes/YOUR_THEME/functions.php
add_filter('https_ssl_verify', '__return_false');
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
3214 次 |
| 最近记录: |