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 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?
The text was updated successfully, but these errors were encountered:
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?
The text was updated successfully, but these errors were encountered: