By editor, 4 April, 2016 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 Tags Linux Shell PHP SSL/TLS Comments You must have JavaScript enabled to use this form. Your name Subject Comment About text formats Plain text No HTML tags allowed. Lines and paragraphs break automatically. Web page addresses and email addresses turn into links automatically.
Comments