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
2
votes
1 answer

GET internal server error (500) with Next.js and React

I'm developing a website for a college class, followed a tutorial on YouTube since I have no real experience with this level of coding. The site "works" locally...when I execute it, at first the screen is just white, but if I refresh the page it…
Chris Johnson
  • 69
  • 1
  • 2
  • 8
2
votes
2 answers

Error 500 while using bearer token with Spring boot + Keycloak

This is my first Keycloack integration with a SpringBoot + Spring Security app, and i found myself in a problem. I am using the Keycloak Spring Security Adapter, but something is missing since an error 500 is shown instead of authorizing the request…
2
votes
1 answer

Using Xunit in .Net core web API - How to test/ pass 500 status code

We are trying the Test Driven Development for our .Net core 3.1 Web API and using XUnit for the same. In my controller, I have test cases or [Fact] written for the status codes 200,404 and other scenarios. When it comes to unit testing 500 internal…
Ann Snow
  • 63
  • 1
  • 7
2
votes
3 answers

Why Jenkins returning http 500 while adding git repository?

I am trying to add a git repository in a freestyle job. However after adding the repository, seeing the error described in the snip provided.
2
votes
2 answers

Return a 500 error from doPost in Google App Script

I have doPost(e) function in an App Script that is called by Zapier. If an exception occurs in my code, a 200 response is sent back to Zapier, but I'd like it to return a 500 error, so that Zapier knows it has failed. function doPost(e) { if (e)…
Fijjit
  • 1,399
  • 2
  • 17
  • 31
2
votes
1 answer

Error HTTP 500.19 - Internal Server Error while deploying angular app in IIS

I have a problem when deploying my Angular app on IIS, I added the config file "web.config", and granted the permissions to the users:
2
votes
1 answer

How to intentionally make all Mirage JS request return 500?

Trying to make MULTIPLE mocked service response 500 for testing any suggestions?
adB
  • 41
  • 4
2
votes
5 answers

500 Internal Server Error when uploading to an AWS S3 bucket from Nuxt

I am trying to upload a file to AWS S3 using aws-sdk v3 from a Nuxt app's Vue Component. Here's how I upload it.