Questions tagged [http-status-code-500]

Use for questions where the server throws 500 Internal Server Error and the server is not in your control. For servers in your control, look through the server logs to pinpoint the actual problem

The 500 Internal Server Error is a catch-all error code that can mean literally anything. Instead, look through server logs, etc and try to pinpoint the actual problem and tag it accordingly.

The relevant section of the HTTP protocol:
http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html

More information about codes returned from IIS 7:
http://support.microsoft.com/kb/943891

745 questions
0
votes
1 answer

Ruby uniquest request : error 500

Just get a HTTP error 500 when I try to execute this uniquest Ruby script. The goal is to make an HTTP POST request on an API which use oauth to authenticate. So I made 2 arrays, one for the request header and a second for the request body, but it…
Bastien Robert
  • 809
  • 1
  • 10
  • 31
0
votes
2 answers

Azure Web App Http Error 500

https://bucherid.azurewebsites.net/ the website can't be accessed normally and ended up with http error 500 But, when i logged in to bucherid.azurewebsites.n*t/wp-login/ finally i can see the website content normally. previously the site can be…
0
votes
0 answers

Intermittently getting HTTP 500 server errors while browsing the Azure Web App

We have enabled out-of-box Azure easy Authentication/Authorization for Azure web app using Azure AD and we have observed that the callback to authenticate the user after the user has logged in causes timeout intermittently. Exact Error : "500 - The…
0
votes
3 answers

Displaying image in 500 status page (Django)

I have a Django app with nginx as a reverse proxy web server. I want to serve an image in my 500 error page. How do I do that within a Django project? I tried the advice here. I.e. my virtual host file for nginx contains: error_page 500 502 503 504…
Hassan Baig
  • 15,055
  • 27
  • 102
  • 205
0
votes
0 answers

Occasion 503 error from google login callback, Django

Somehow I receive 503 error report related to Google Social Login. Does it mean Google occasionally broke down? I have a hard time to reproduce it on either development server or production server. Internal Server Error:…
Andy
  • 1,231
  • 1
  • 15
  • 27
0
votes
1 answer

recurrent Service - time out issue

We have a web service that has been in prodcution for 6 months. For the last 2 months we have been getting intermittent failure. We are running a test bot that hits the service every 15 mins to make sure it works fine. The input parameters for the…
0
votes
1 answer

Redeployed MVC5 dlls on IIS7.5 HTTP 500 Internal Server Error

I am getting 500 Internal Server Error and finding no clue about the problem However I have just updated applications dll and in browser it is not showing any HTTP500 error details There is warring in Failed Request Tracing ModuleName …
Kamran Qadir
  • 466
  • 10
  • 20
0
votes
1 answer

Server returned HTTP response code: 500. Java app

I am making simple request from Spring Boot app to URL. URL url = new URL("http://...:8001/api/meta"); HttpURLConnection urlConnect = (HttpURLConnection) url.openConnection(); int code = urlConnect.getResponseCode(); ... code = 500. Then an error…
Kirill Ch
  • 5,496
  • 4
  • 44
  • 65
0
votes
2 answers

WordPress Shows error 500 when W3 Total Cache Plugin is installed

When installing the W3 total cache plugin my website shows blank page. I checked the .htaccess. I also tried wp super cache plugin. This plugin also shows the same error when cache is enabled. Kindly help me to find a solution. Thanks in advance. #…
Abilash VB
  • 11
  • 1
  • 5
0
votes
1 answer

Error 500 in ajax with php7

I switched my site from php5.5 to php7, and I now have a very strange bug : When I do a particular ajax request wich contain a redirection, the server answer with a http 500 error code, while returning the good html content (I can see it from the…
Yrtiop
  • 51
  • 15
0
votes
2 answers

Wordpress Enqueuing Script returns 500 error

I am registering and enqueuing the script in my file functions.php I got a white page and a console error 500 add_action( 'ninja_forms_insert_sub', 'ninja_forms_coregistration', 4 ); function ninja_forms_coregistration($sub_id){ global…
Afaf
  • 654
  • 1
  • 5
  • 17
0
votes
1 answer

Where to see PHP build-in web server log or something?

I took someone's PHP project with a bunch of PHP files and ran it with the following command C:\tools\php71\php.exe -S localhost:8080 -t PATHTOSOMELOCATION Now, when I am opening http://localhost:8080 I am getting error 500. Where to see what is…
Dims
  • 47,675
  • 117
  • 331
  • 600
0
votes
1 answer

Status 500 using requests in Python

So I am working on sending images to an url. And I planned to use Python to make the POST requests. My code looks like this: import requests headers = {'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko)…
user5497505
  • 73
  • 1
  • 9
0
votes
1 answer

HTTP Status 500 - Error instantiating servlet class org.springframeworks.web.servlet.DispatcherServlet

HTTP Status 500 - Error instantiating servlet class org.springframeworks.web.servlet.DispatcherServlet type Exception report message Error instantiating servlet class org.springframeworks.web.servlet.DispatcherServlet description The server…
0
votes
0 answers

Wordpress error 500 after placing code

I'm working on my first project on a Wordpress website. Ik make in my theme map a map with a file in it like ***************/rb-delete-all-transient.php. Now when i put echo "test"; in it the there is no problem and i see test in the browser. If i…