简体   繁体   中英

cURL on local WordPress site returns: Error 6 (Could not resolve host)

I have a local WordPress installation running at: https://catalogue3.test .

Note that all .test domains should resolve to localhost , as I use Laravel valet . When I execute the following code in my Laravel project however, I get an exception as shown below.

$client = new \GuzzleHttp\Client();
$response = $client->request('GET', "https://catalogue3.test", ['verify' => false]);

ConnectException

cURL error 6: Could not resolve: catalogue3.test (Domain name not found) (see http://curl.haxx.se/libcurl/c/libcurl-errors.html )

When I run the command below in the terminal, the WordPress page is displayed.

curl https://catalogue3.test/ --insecure

我解决了这个将catalogue3.test添加到/etc/hosts ,即使我使用的是DnsMasq ,理论上我也不需要它。

Add

ip catalogue3.test

to your /etc/hosts file

In my case (on macos) I had to add 127.0.0.1 as the first DNS server option in my WiFi settings.

Some useful info here too: https://github.com/laravel/valet/issues/736

I tried to add the domain to hosts and I tried to change dns in network settings, this answer is what worked for me.

Quick way to check if this is your problem is to do: curl --version and php --ri curl

The versions should match. If they don't it's probably because brew has installed curl-openssl. This can be removed by doing:

brew uninstall curl-openssl --ignore-dependencies

Maybe there's a way to configure the installed curl-openssl properly - I've not investigated this yet.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM