Questions tagged [http-status-code-503]

503 is one of the status codes a web server can return to a client application when processing a request. 503 is defined as Service Unavailable

503 Service Unavailable. The server is currently unable to handle the 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. If known, the length of the delay may be indicated in a Retry-After header. If no Retry-After is given, the client should handle the response as it would for a 500 response.

Note:

The existence of the 503 status code does not imply that a server must use it when becoming overloaded. Some servers may wish to simply refuse the connection.

Related tags

See also RFC2616.

535 questions
1
vote
0 answers

Why Stripe webhook does work by using of terminal and doesn't work without terminal?

I've made a php end-point http://site/stripe-webhooks with code from the Following example "http://stripe.com/docs/webhooks/build".
1
vote
0 answers

I get 503 after copying to many files with PHP

I am trying to duplicate an entire folder (a very big one) with a recursive function. class Folder { static function copy (string $source, string $destination) { $dir = opendir($source); if (!is_dir($destination)) …
1
vote
0 answers

Error 503 with my .jar after transfer my website to an other hoster

I created a minecraft launcher with SKCraft and everything was hosted on 000webhost.com. Then I transferred my site to hostinger.com and changed all the links to point to my new host. Except that since, I get this error: java.io.IOException: Did not…
1
vote
1 answer

Why is Net::HTTP returning a 500 when the server is returning a 503?

(This question replaces this one, hopefully with better information.) I've got three servers that I'm gonna call Alice, Charlie, and Harry (Harry being the server's actual nickname, so as not to confuse myself). They all talk to each other to…
PJSCopeland
  • 2,818
  • 1
  • 26
  • 40
1
vote
0 answers

Proxy Apache FastCGI

I have a domain with a python django application and the request tracker software. The goal of the post is to move the request tracker to the path "^/ ticket /*" That's why the consideration is "mod_proxy_fcgi" (or does one rather use…
Josef Soe
  • 91
  • 8
1
vote
1 answer

503 Service Temporarily Unavailable after running an import-script

I have a domain on a Plesk server (version 17.8) with CentOS 7. Prestashop is installed on this domain and the products are imported via a self-programmed module. When I start import then I get the message: Service Temporarily Unavailable The server…
1
vote
0 answers

curl POST returning error 503 in cloud linux instance, while working on local mac

Describe the bug curl POST request fails with 503 in cloud (Digital Ocean) Ubuntu 18.04 instance, while the same setup works on a local mac (10.13.4). Is there something cloud specific that is causing the error code? To Reproduce Open 2…
Rexcirus
  • 2,459
  • 3
  • 22
  • 42
1
vote
1 answer

error 503 centreon how can redirect properly this

when I try to connect with my address 172.16.16.170:5000 here is the page I get and I don’t know how to fix, it i thinks it's a error of config but i don't now where. i configure port in apache2 and now a page apear but steal not working, i restart…
NoRage
  • 139
  • 2
  • 12
1
vote
1 answer

How to add timeout in JAX-RS API

I have a JAX-RS API that does a long duration work and the API is being called via ajax call by the client. The client is getting 503 status - Service Unavailable after 50 seconds. How can I increase this timeout value. I tried increasing the…
Vinod
  • 1,076
  • 2
  • 16
  • 33
1
vote
2 answers

How to set Apache HTTP 503 error code instead of HTTP 500 on PHP error

any ideas how to replace Apache HTTP 500 (Internal Server Error) error by HTTP 503 (Service Unavailable) on PHP error once PHP error displaying is off? This is much better option to inform spiders to back to the site soon... P.S. would be great to…
Marcin
  • 5,469
  • 15
  • 55
  • 69
1
vote
1 answer

Service Unavailable. Apache2 centos 7

I have installed apache in centos 7. PHP version 7.1 and php-fpm. I had restarted system. Afterward, apache is working but once i access any file it show me below error. 503 service Unavailable Service Unavailable The server is temporarily unable…
JayminLimbachiya
  • 971
  • 1
  • 13
  • 19
1
vote
0 answers

503 Service UNavailable

Service Unavailable The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later. Additionally, a 503 Service Unavailable error was encountered while trying to use an ErrorDocument…
1
vote
2 answers

Laravel - Schedule queues returns a 503 error on shared hosting

I have application in laravel that send several email and some of this email have to wait some time to be sent. So I'm using the queue database type and in localhost I run the command php artisan schedule:run that runs this…
user3242861
  • 1,839
  • 12
  • 48
  • 93
1
vote
0 answers

Is there a way to return a 503 using azure application gateway

As the title says we are using azure application gateway to front all the traffic to our application. We want the ability to switch it into what will essentially be a maintenance mode and would like to return a 503 as opposed to the standard 502 it…
1
vote
0 answers

Laravel 5.6 download php/html file after submit a form

I'm using laravel 5.6 and I have add the auth from laravel. Sometimes when I try to login with chrome ( latest version ) then I download a file. The content of the file is:-
Damlo
  • 132
  • 1
  • 17