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
When I tried to run install-wp-tests.sh, on the line that uses wget, I got this:
ERROR: cannot verify raw.github.com's certificate, issued by 'CN=DigiCert SHA2 H
igh Assurance Server CA,OU=www.digicert.com,O=DigiCert Inc,C=US':
Unable to locally verify the issuer's authority.
To connect to raw.github.com insecurely, use `--no-check-certificate'.
That particular error is caused by the line accessing github.com but the error "ERROR: cannot verify x's certificate" occurs on every line using wget with SSL in that script including the line accessing wordpress.org.
I downloaded a certification file from here and used the --ca-certificate option of wget and it does not give the error.
I thought this kind of certification issue only occurs on Windows which does not natively support wget. However, this issue seems to be not uncommon among different platforms and applications. What about changing it to use curl instead of wget?
Hi,
When I tried to run
install-wp-tests.sh
, on the line that useswget
, I got this:I tried both versions of wget 1.11.4 (http://gnuwin32.sourceforge.net/packages/wget.htm) and 1.16.1 (https://eternallybored.org/misc/wget/) and both gave this error.
It seems to occur when trying to access a url with the https protocol. If I add the
--no-check-certificate
option, it works.The text was updated successfully, but these errors were encountered: