I\'m using \"FriendsOfPHP/Goutte\" Package https://github.com/FriendsOfPHP/Goutte For web crawling... When I use \"http://\" links then it\'s ran correctly but when I use \"
Try disabling CURLOPT_SSL_VERIFYPEER to stop cURL from verifying the peer's certificate:
CURLOPT_SSL_VERIFYPEER
$client->getClient() ->setDefaultOption('config/curl/' . CURLOPT_SSL_VERIFYPEER, false);