Getting "Error 503 Backend fetch failed" on live form

  • orhanmelihunlu
    Asked on January 13, 2016 at 7:32 AM

    Hello,

    I'm having a problem with URL. When I click to my form it shows that Error;

    Error 503 Backend fetch failed

    Backend fetch failed

    Guru Meditation:

     

    XID: 1575923

    How can I solve this?

    Jotform Thread 743687 Screenshot
  • victor
    Replied on January 13, 2016 at 11:10 AM

    Sorry for the inconvenience. I have just verified your page and was able to view the form properly. If you are still experiencing the issue, please let us know and we will be glad to help.

    Getting Error 503 Backend fetch failed on live form Image 1 Screenshot 20

  • nima
    Replied on October 22, 2016 at 10:58 AM

    The solution to this issue is quite simple. It occurs often on Apache servers and it’s all due to the KeepAlive directive.

    Edit /etc/apache2/apache2.conf

    KeepAlive On Change to KeepAlive Off

     

    http://www.aradpardaz.com

  • Nima
    Replied on October 22, 2016 at 11:00 AM

    Open your Varnish configuration file (mine was in /etc/varnish/user.vcl) and add these lines:

    backend default { .host = "127.0.0.1";   .port = "8888"; .connect_timeout = 1s; # Wait a maximum of 1s for backend connection (Apache, Nginx, etc...) .first_byte_timeout = 5s; # Wait a maximum of 5s for the first byte to come from your backend .between_bytes_timeout = 2s; # Wait a maximum of 2s between each bytes sent }

    Web Design and Server Management