I have a cert that had been working fine since April 2007. It now returns the "incorrect or unexpected message" 12263 error code.
Here is the approprtiate portion of httpd.conf as created automatically by WHM:
<IfDefine SSL>
<VirtualHost ##.#.##.##:443>
ServerAdmin
webmaster@xyz.com
DocumentRoot /home/xyz/public_html
BytesLog domlogs/xyz.com-bytes_log
ServerName
www.xyz.com
UserDir public_html
<IfModule mod_userdir.c>
Userdir disabled
Userdir enabled xyz
</IfModule>
<IfModule mod_php4.c>
php_admin_value open_basedir "/home/xyz:/usr/lib/php:/usr/local/lib/php:/tmp"
</IfModule>
<IfModule mod_php5.c>
php_admin_value open_basedir "/home/xyz:/usr/lib/php:/usr/local/lib/php:/tmp"
</IfModule>
User xyz
Group xyz
ScriptAlias /cgi-bin/ /home/xyz/public_html/cgi-bin/
SSLEnable
SSLCertificateFile /usr/share/ssl/certs/www.xyz.com.crt
SSLCertificateKeyFile /usr/share/ssl/private/www.xyz.com.key
SSLCACertificateFile /usr/share/ssl/certs/www.xyz.com.cabundle
SSLLogFile /usr/local/apache/domlogs/www.xyz.com-ssl_data_log
CustomLog /usr/local/apache/domlogs/www.xyz.com-ssl_log combined
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
</VirtualHost>
</IfDefine>
How to fix? Ideas?