php 503 服务不可用:后端服务器满负荷........?服务器是否收到我的 POST 数据?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/12579062/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-25 03:50:54  来源:igfitidea点击:

503 Service Unavailable: Back-end server is at capacity ........? Do server receive my POST data?

phphttphttpwebrequest

提问by user1696630

After I posted my request , server give me 503 response, I wonder if server have reveived my POST data ?

我发布请求后,服务器给我 503 响应,我想知道服务器是否已经恢复了我的 POST 数据?

回答by NullPoiиteя

The Web server (running the Web site) is currently unable to handle the HTTP request due to a temporary overloading or maintenance of the server. The implication is that this is a temporary condition which will be alleviated after some delay. Some servers in this state may also simply refuse the socket connection, in which case a different error may be generated because the socket creation timed out.

由于服务器临时过载或维护,Web 服务器(运行网站)当前无法处理 HTTP 请求。这意味着这是一个暂时的情况,将在一些延迟后得到缓解。一些处于这种状态的服务器也可能简单地拒绝套接字连接,在这种情况下,由于套接字创建超时,可能会产生不同的错误。

This is a server problem . From HTTP Error 503 - Service unavailable

这是服务器问题。 来自 HTTP 错误 503 - 服务不可用

回答by Harry Beasant

What are you making the post with? A simple form?

你用什么发帖子?一个简单的表格?

If the server has given a 503, generally this means that there has been an error in the code or the server and no POST data could be received.

如果服务器给出了 503,通常这意味着代码或服务器中存在错误并且无法接收 POST 数据。

Please paste some server-side code so i can see if the error is in there.

请粘贴一些服务器端代码,以便我查看是否存在错误。