Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Ishatanjeeb's avatar

Mandrill does not working

I try to use mandrill for my contact form but it's showing bellow error message:

RequestException in CurlFactory.php line 169: cURL error 60: SSL certificate problem: unable to get local issuer certificate (see http://curl.haxx.se/libcurl/c/libcurl-errors.html)
0 likes
7 replies
bashy's avatar

Update DNS nameservers to not be 127.0.0.1 or similar. Use a public one like Google.

bashy's avatar

Yeah, localhost won't have a proper DNS set? What are you using to develop on? Homestead/VM?

bashy's avatar
bashy
Best Answer
Level 65
sudo nano /etc/resolvconf/resolv.conf.d/base

Add in this

# Google
nameserver 8.8.8.8
nameserver 8.8.4.4

Then to update the /etc/resolv.conf file, run this

sudo resolvconf -u

Please or to participate in this conversation.