vote up 1 vote down star

I've got a customer trying to access one of my sites, and they keep getting this error > ssl_error_rx_record_too_long

They're getting this error on all browsers, all platforms. I can't reproduce the problem at all.

My server and myself are located in the USA, the customer is located in India.

I googled on the problem, and the main source seems to be that the SSL port is speaking in HTTP. I checked my server, and this is not happening. I tried the solution mentioned here, but the customer has stated it did not fix the issue.

Can anyone tell me how I can fix this, or how I can reproduce this???

PS: If you can reproduce the problem with the following URL please let me know!

THE SOLUTION

Turns out the customer had a misconfigured local proxy!

Hope that helps anyone finding this question trying to debug it in the future.

flag

50% accept rate

9 Answers

vote up 0 vote down

In my case I had to change to and worked like a charm

link|flag
vote up 0 vote down

Hi, I had the same problem in some browser to access to my SSL site. I have found that I had to give to fireFox the right proxy (FireFox was accessing directly to internet).

Depending of the lan configuration (Tunneling, filtering, proxy redirection), the "direct access to internet" mode for FireFox throws this error.

link|flag
vote up 0 vote down

I had a messed up virtual host config. Remember you need one virtual host without SSL for port 80, and another one with SSL for port 443. You cannot have both in one virtual host, as the webmin-generated config tried to do.

link|flag
vote up 0 vote down

My problem was due to a LOW MTU over a VPN connection.

netsh interface ipv4 show inter

Idx  Met   MTU   State        Name
---  ---  -----  -----------  -------------------
  1 4275 4294967295  connected    Loopback Pseudo-Interface 1
 10 4250   **1300**  connected    Wireless Network Connection
 31   25   1400  connected    Remote Access to XYZ Network

Fix: netsh interface ipv4 set interface "Wireless Network Connection" mtu=1400

It may be an issue over a non-VPN connection also...

link|flag
vote up 3 vote down

In my case I had to change the <VirtualHost *> back to <VirtualHost *:80> (which is the default on Ubuntu). Otherwise, the port 443 wasn't using SSL and was sending plain HTML back to the browser.

You can check whether this is your case quite easily: just connect to your server www.example.com:443 with http:// (sorry, I can't post URL yet :/) if you see plain HTML, your Apache isn't using SSL on port 443 at all, most probably due to a VirtualHost issue.

Cheers!

link|flag
vote up 0 vote down

I also got this message, and the error in my case was that I had forgot to set SSLEngine On in the configuration.

link|flag
vote up 0 vote down

In my case the problem was that https was unable to start correctly because Listen 443 was in "IfDefine SSL" derective, but my apache didnt start with -DSSL option. The fix was to change my apachectl script in:

$HTTPD -k $ARGV

to:

$HTTPD -k $ARGV -DSSL

Hope that helps somebody.

link|flag
vote up 1 vote down

I'm thinking it could also be caused by a misconfigured proxy at their side of things. Any thoughts on that as well?

link|flag
vote up 0 vote down

Ask the user for the exact URL they're using in their browser. If they're entering https://your.site:80, they may receive the ssl_error_rx_record_too_long error.

link|flag
I saw a screenshot and it's not :80 Try it for yourself: monkeyfood.cashboardapp.com – Subimage Sep 23 '08 at 6:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.