Question
How to Override SSL certificate check (https://) on linux / PHP / Apache / cURL ... ?
On linux (wget)
wget --no-check-certificate https://yourdomain.com
wget --no-check-certificate https://name:pass@yourdomain.com
On Apache PHP
$context=array(
"ssl"=>array(
"verify_peer"=>false,
"verify_peer_name"=>false,
),
);
$response = file_get_contents("https://yourdomain.com", false, stream_context_create($context));
On PHP cURL:
curl_setopt($rCURL, CURLOPT_SSL_VERIFYPEER, false);
Other Solutions:
TODO
Add new comment