0

I cannot import this rss feed:

https://mwager.de/feed.xml

On the w3c validator I get the following error:

Server returned [Errno 1] _ssl.c:490: error:14077458:SSL routines:SSL23_GET_SERVER_HELLO:reason(1112)

From: http://validator.w3.org/feed/check.cgi?url=http%3A%2F%2Fmwager.de%2Ffeed.xml

Edit:

I can import the localhost URL though using rss reader app "NetNewsWire":

http://localhost:4000/feed.xml

I just don't get why I can view the feed in a browser but no reader can import it. So this seems like a ssl issue but I have no idea how to tackle this problem...

Edit 2:

If I remove the "force SSL option" on my hosting providers website, it works with the non-ssl URL: http://mwager.de/feed.xml but still not with https://mwager.de/feed.xml

fr00t
  • 681
  • 1
  • 4
  • 19
  • "Debug my web site" questions with only a link to the site are likely to be closed because as soon as you've fixed the problem the question becomes useless for anyone having the same problem later. For instructions on how to improve the question see [Something in my web site or project doesn't work. Can I just paste a link to it?](http://meta.stackoverflow.com/questions/125997/something-in-my-web-site-or-project-doesnt-work-can-i-just-paste-a-link-to-it) – JJJ May 30 '14 at 07:55
  • thx, but I don't know how to isolate the problem here. It seems there is a problem with forced SSL cert of my provider but I am no expert in this area. With a browser I can open the feed: https://mwager.de/feed.xml but no rss app can import it. – fr00t May 30 '14 at 10:57

1 Answers1

1

If the validator sees no problem with your http:// feed, then it's a valid feed.

The problem with SSL is that the validator (and maybe the feed readers you're testing?) are using a version of libssl that isn't compatible with your host's. From what I gather it's an openssl bug: Running curl with OpenSSL 0.9.8 against OpenSSL 1.0.0 server causes handshake error?

See this question for a different example of the same situation, with php-curl: PHP Curl: SSL routines:SSL23_GET_SERVER_HELLO:reason(1112)

Community
  • 1
  • 1