On 24 Sep 2014, at 17:55, Andy <
geew...@gmail.com> wrote:
I have the same issue, and I have tried the trick that David stated but that doesn't appear to have fixed it for me. Any other suggestions or are there any instructions on how to do the process manually?
Generating keys and CSRs manually is pretty easy from anywhere you have OpenSSL installed:
openssl req -out example.com.csr -sha256 -new -newkey rsa:2048 -nodes -keyout example.com.key
After you answer the questions that will generate a 2048-bit key and a CSR. Note that it's using an SHA2 key, which may not be supported in some older browsers, but you should consider using it since SHA1 is now widely deprecated and not considered secure.
Marcus