I'm trying to get the NET::ERR_CERT_DATE_INVALID error fixed for local development.
I'm working with a xampp setup (PHP 7.4, Windows 10). After trying several tutorials on self signed certificates, I'm now on a point where I'm stucked.
What I've done so far
Creating a self signed certificate, using openssl in xampp like this:
set OPENSSL_CONF=C:\xampp\php\extras\openssl\openssl.cnf
openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout server.key -out server.crt
I successfully created the server.crt
and server.key
files and put them in the correct directory C:\xampp\apache\conf\[ssl.crt]/[ssl.key]
- Import it using this tutorial: Import a Self-Signed Certificate on a Windows Host
I've also tried to download the cacert.pem
bundles from CA certificates and uncomment the necessary lines in my php.ini
file.
I've always restarted my server afterwards, but none of the above methods are working.