Firefox error: -12263 SSL_ERROR_RX_RECORD_TOO_LONG
According to ( http://www.mozilla.org/projects/security/pki/nss/ref/ssl/sslerr.html ) this error means
error: -12263 SSL_ERROR_RX_RECORD_TOO_LONG "SSL received a record that exceeded the maximum permissible length."
This generally indicates that the remote peer system has a flawed implementation of SSL, and is violating the SSL specification.
If you are using Apache2:
In the ports.conf file, make sure it looks like the following:
— clip —
Listen 80
Listen 443 https
— clip —
The https after the 443 tells Apache2 to use the SSL protocol on that port.
