http://dotnetstock.com/technical/http-status-code-505-http-version-not-supported/

The reason for the error 505 is, the Web server does not support, or refuses to support, the HTTP protocol version specified by the client  in the HTTP request data stream sent to the server.Here let us see How to fix “HTTP Status Code 505 – HTTP Version Not Supported” error?
Why this error:

There will be mainly 3 reason for this error.

1. The request you are sending to the server from the client browser, it is not in the form which can be understand by the server.
2. A third-party product is interfering with Internet Explorer.
3. The HTTP 1.1 setting is enabled.

How to fix the error 505- HTTP Version Not Supported?

As a first step you just check the same url from an updated browser.

verify the HTTP request, whether this request contain any kind of junk character is there in your request, or any white spaces are creating the issue. To overcome this white space issue you can use the urlencode() function before calling the server.

If the issue is happening only in you browser, try this.

1. In Internet Explorer, click Internet Options on the Tools menu.
2. In the Internet Options dialog box, click the Advanced tab.
3. Click to clear the HTTP 1.1 check box, and then click OK.

4. Test to determine if the issue is resolved. If the issue is resolved, do not complete the remaining steps. If the issue is not resolved, go to the next step.
5. In Internet Explorer, click Internet Options on the Tools menu.
6. In the Internet Options dialog box, click the Advanced tab.
7. Click to clear the Show friendly HTTP error messages check box.
8. Try to view a Web page to reproduce the error message and to receive a new, more descriptive error message. This new error message may be similar to the following:
HTTP version not supported by program name.
Note the name of the program in this new error message.
9. The program name that you noted in step 8 may be the cause of this issue. Either remove this program, or contact the manufacturer of the program to inquire about the availability of a fix for this issue.

How to fix “HTTP Status Code 505 – HTTP Version Not Supported” error?--转的更多相关文章

  1. failed to open stream: HTTP request failed! HTTP/1.1 505 HTTP Version Not Supported

    PHP模拟GET请求支付宝退款链接(未用sdk  自己拼接的请求链接与参数); 起初用file_get_contents();就报错 :failed to open stream: HTTP requ ...

  2. HTTP 1.0 Status Code Definitions

    part of Hypertext Transfer Protocol -- HTTP/1.1RFC 2616 Fielding, et al. 10 Status Code Definitions ...

  3. HTTP Status Code [RFC]

    来源:http://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml Hypertext Transfer Prot ...

  4. 500 status http status code 状态码

    https://developer.mozilla.org/en-US/docs/Web/HTTP/Status Server error responses 500 Internal Server ...

  5. 常见的HTTP状态码(HTTP Status Code)

    HTTP状态码 当使用浏览器访问一个网页时,浏览器会向网页所在服务器发出请求.当浏览器接收并显示网页前,此网页所在的服务器会返回一个包含HTTP状态码的信息头(server header)用以响应浏览 ...

  6. 你需要了解的 HTTP Status Code

    你需要了解的 HTTP Status Code Intro 现在前后端分离的开发模式越来越流行,后端负责开发对应的 API,前端只需要 关注前端页面的数据展示和前端逻辑即可. 对于前后端分离这种开发模 ...

  7. status http status code 状态码

    RFC 6585 - Additional HTTP Status Codes https://tools.ietf.org/html/rfc6585 https://developer.mozill ...

  8. HTTP状态码(HTTP Status Code)及常用场景

    常见的状态码: HTTP: Status 200 – 服务器成功返回网页HTTP: Status 3xx - 表示要完成请求,需要进一步操作. 通常,这些状态代码用来重定向HTTP: Status 4 ...

  9. API的HTTP Status Code

    响应中的状态码 状态码 定义 说明 1xx 信息 接收到请求,继续处理 2xx 成功 操作成功地收到请求,理解和接受 3xx 重定向 为了完成请求,必须采取进一步擦措施 4xx 客户端错误 请求的语法 ...

随机推荐

  1. COGS 144. [USACO Dec07] 魅力手镯【01背包复习】

    144. [USACO Dec07] 魅力手镯 ★   输入文件:charm.in   输出文件:charm.out   简单对比 时间限制:1 s   内存限制:8 MB 译 by CmYkRgB1 ...

  2. 2017ecjtu-summer training #5 UVA10382

    题意 问最少可用几个圆覆盖矩形区域. 解析 将圆形转换成矩形有效区域,直径小于等于宽度的圆不考虑,从而转化成区间覆盖问题,然后贪心出最少圆. 贪心思想 每次选择出区域左界比上次选出的区域右界小的且区域 ...

  3. Spring Boot实战:静态资源处理

    前两章我们分享了Spring boot对Restful 的支持,不过Restful的接口通常仅仅返回数据.而做web开发的时候,我们往往会有很多静态资源,如html.图片.css等.那如何向前端返回静 ...

  4. nagios与zabbix对比

    nagios与zabbix对比 web功能: Nagios简单直观,报警与数据都在同一页面,***.红色即为问题项.Nagios web端不要做任何配置. Zabbix监控数据与报警是分开的,查看问题 ...

  5. Xmanager 远程到ubuntu失败

    原因: 22端口没打开 SSH server服务没打开 解决办法: 打开22端口 如果没安装过防火墙:sudo apt-get install ufw ,sudo ufw enable 启动端口:su ...

  6. linux 下查看有当前文件夹有多少个文件

    ls |wc -w

  7. 邓_ phpcms_

    {pc:content action="lists" catid="$catid" num="10" order="id DESC ...

  8. Efounds笔试

    Efounds的笔试~ 1.比较两个浮点数大小 一般不会直接用"=="或者"!="对两个浮点数进行比较. 判断两个浮点数float a 与 float b 是否 ...

  9. javascript如何自动去除所有空格?

    1.jquery自带了trim方法:    $.trim(" abc ") // abc 2.自己写方法: function trim(str) { return str.repl ...

  10. MyBatis动态传入表名,字段名参数的解决办法

    原文:http://blog.csdn.net/xichenguan/article/details/50393748 要实现动态传入表名.列名,需要做如下修改 添加属性statementType=& ...