Forum Moderators: phranque
I'm trying to load a new form into the folder that is configured for our digital certificate... I'm having some problems...
1st I got the message about "You are trying to display both secure and nonsecure items, would you like to proceed?" It was having a problem with my gif files saying they were non-secure. So I referenced them with an HTTPS.
Question #1 - is that necessary?
Now I'm getting an error message saying " The name on the security certificate is invalid or does not Match the Site Name"
Question #2 - What could that be?
I'm trying to load a new form into the folder that is configured for our digital certificate... I'm having some problems...
Assuming you purchased a certificate for yourdomain.com I find it strange that a separate folder would be configured for your SSL server.
1st I got the message about "You are trying to display both secure and nonsecure items, would you like to proceed?" It was having a problem with my gif files saying they were non-secure. So I referenced them with an HTTPS.Question #1 - is that necessary?
Now I'm getting an error message saying " The name on the security certificate is invalid or does not Match the Site Name"Question #2 - What could that be?
Naturally the reverse would be true if the domain name on the certificate is domain.com without the www
I find it strange that a separate folder would be configured for your SSL server.
<VirtualHost oneofmydomains.tld:80>
DocumentRoot /var/www/oneofmydomains-nossl
... other directives ...
</VirtualHost>
<VirtualHost oneofmydomains.tld:443>
DocumentRoot /var/www/oneofmydomains
SSLEngine on
SSLCertificateFile /path/to/cert
SSLCertificateKeyFile /path/to/key
... other directives ...
</VirtualHost>
Separate content, separate folders.