Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Sign Up forms | Error code: ssl_error_rx_record_too_long WordPress

  • SOLVED

We are getting (Error code: ssl_error_rx_record_too_long) when login using both form and also when we submit form. Any ideas why and how to correct?

http://yourspiritsvoice.com/businessdirectory/add-your-event

http://yourspiritsvoice.com/businessdirectory/add-your-business

Thanks

Answers (4)

2012-07-03

Spencer Tomosvary answers:

The SSL was incorrectly generated for spiritsvoice.com instead of for yourspiritsvoice.com. I would start with that issue. You'll need to purchase a new cert for yourspiritsvoice.com, but you can generate and install a self signed certificate in the meanwhile to solve the other issues that may be going on.

2012-06-30

Daniel Yoen answers:

its your server problem :

try to change <VirtualHost yourdomain.com:443> to <VirtualHost _default_:443>

or If using Apache2 check that you are using port 443 for SSL :

Listen 80
Listen 443 https

hope this help


Daniel Yoen comments:

or try to set SSLEngine On in the configuration.

<VirtualHost _default_:443>
SSLEngine on
...
</VirtualHost>

ref : http://httpd.apache.org/docs/2.2/mod/mod_ssl.html#sslengine

2012-06-30

Arnav Joy answers:

please see this link

http://stackoverflow.com/questions/119336/ssl-error-rx-record-too-long-and-apache-ssl

or try following

To fix this you must not use a wildcard domain for your vhost and make sure it’s your actual server ip.

#Wrong:
<VirtualHost _default_:443>
#Right:
<VirtualHost 10.1.1.5:443>
If this doesn’t fix your problem check the following:


Did you set, usually done per vhost: SSLEngine on
Cert/Key correctly generated

2012-06-30

Rashad Aliyev answers:

This usually means the implementation of SSL on your server is not correct. The error is usually caused by a server side problem which the server administrator will need to investigate.

<VirtualHost _default_:443>
SSLEngine on
...
</VirtualHost>

change the <VirtualHost> from _default_ to your fqdn).