You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You must add a parameter
$curl_options[CURLOPT_SSL_VERIFYHOST] = $config['verify'];
Otherwise, an unpredictable error occurs when accessing http://
Or add the ability to set options
Exemple:
$curl = new CURLRequest( $config, new URI($options['base_uri'] ?? null), $response, $options );
$curl->setOpt(CURLOPT_SSL_VERIFYHOST, false);
The text was updated successfully, but these errors were encountered:
CodeIgniter4/system/HTTP/CURLRequest.php
Line 676 in b1e2dec
You must add a parameter
$curl_options[CURLOPT_SSL_VERIFYHOST] = $config['verify'];
Otherwise, an unpredictable error occurs when accessing http://
Or add the ability to set options
Exemple:
$curl = new CURLRequest( $config, new URI($options['base_uri'] ?? null), $response, $options );
$curl->setOpt(CURLOPT_SSL_VERIFYHOST, false);
The text was updated successfully, but these errors were encountered: