When a wildcard certificate is downloaded (i.e. *.example.com) all files that are zipped in the zip archive are named *.example.com.crt, etc.
Since Windows is not able to handle * in the filename, the zipfile appears to be empty.
I fixed this by adding the following code on line 2678 of modules/servers/namecheapssl/namecheapssl.php:
$commonName = str_replace("*", "__", $commonName);
Will this be fixed in upcoming releases?
When a wildcard certificate is downloaded (i.e. *.example.com) all files that are zipped in the zip archive are named *.example.com.crt, etc.
Since Windows is not able to handle * in the filename, the zipfile appears to be empty.
I fixed this by adding the following code on line 2678 of modules/servers/namecheapssl/namecheapssl.php:
$commonName = str_replace("*", "__", $commonName);
Will this be fixed in upcoming releases?