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
4
votes
6 answers

Laravel 5.5 Error 500 in Cpanel Shared Hosting

I already upload my laravel project folder into cpanel hosting. I did't have VPS. I has read many example in laracast and stackoveflow, but still get this 500 internal error. This is my setting. I has separated public folder in my laravel project…
Arie Sastra
  • 183
  • 1
  • 2
  • 16
4
votes
2 answers

How to handle python django rest-framework-api malformed UUID instead of 500?

When using a malformed UUID in django-rest-framework the server throws an exception and returns status-code 500. The exception ValueError 'badly formed hexadecimal UUID string' isn't handled. It makes more sense to handle it properly and return a…
4
votes
1 answer

Azure MobileApp Controller returns 500 only if return type is IQueryable

My azure mobile app backend is presenting a strange behavior. If my controller action returns an IQueryable and the entity type has a navigation property, it returns 500. A simple example: Model public class ProductHierarchy : EntityData { …
4
votes
1 answer

Custom flask application running fine on localhost but returning 500 response to external visitors

Latest update: The problem had indeed to do with permission and user groups, today I learned why we do not simply use root for everything. Thanks to Jakub P. for reminding me to look into the apache error logs and thanks to domoarrigato for…
Olav A
  • 301
  • 3
  • 10
4
votes
3 answers

Why does a request that exceeds a specified maxRequestLength respond with a (seemingly) irrelevant error?

I've specified a maxRequestLength in my web.config (MVC) like so: When having a look in the network tab while testing for…
user1017882
3
votes
1 answer

500: Internal Server Error with Next Js in some routes

Live Demo After deploying a project written in Next JS to Vercel, some page paths, such as (xxx.vercel.app/first or / second) pages, display "500: Internal Server Error". All Page Routes do not receive any errors except these two Routes. There is no…
Chen Lay
  • 115
  • 1
  • 2
  • 13
3
votes
1 answer

Intercepting a Django 500 error for logging, without creating/serving a custom 500.html

In order to log "some dependency, somewhere deep" errors that trigger a server error 500, without stack traces in the console log on production instances due to DEBUG=False, I implemented the standard custom 500 handler that a fair number of…
Mike 'Pomax' Kamermans
  • 49,297
  • 16
  • 112
  • 153
3
votes
2 answers

googleapi: Error 500: Internal error encountered., backendError when calling Admin SDK

This is strange we have started receiving too many per day (nearly 300-500 times) googleapi: Error 500: Internal error encountered., backendError while calling Admin SDK Directory API. https://developers.google.com/admin-sdk/directory Google chat…
3
votes
2 answers

.htaccess Redirect "/" to non "/" is 500 internal server error

Google has indexed my old URLs that no longer exist. For example, when someone clicks on the old link from Google search, there will be shown a 500 server error. My old URL was https://example.org/idn-poker/, which has recently changed to…
3
votes
6 answers

wordpress website 500 error and outages due to cplugin.php file malware

There is a recent attack where numerous wordpress websites are taken down due to a file cplugin.php which is a malware. The malware is bad written code so for now it is mostly causing 500 server runtime error. But its better to delete it immediately…
Mustafa sabir
  • 4,130
  • 1
  • 19
  • 28
3
votes
1 answer

Intermittent problems starting Azure App Services: "500.37 ANCM Failed to Start Within Startup Time Limit"

Our app services are experiencing the problem, that they can’t be restarted by the hosting environment (ANCM). The user is getting the following screen in that case: Http Error 500.37 Our production subscription consists of up to 8 different app…
3
votes
2 answers

how to fix 500 response code error in Retrofit Android Studio

I am facing problem implementing the POST RETROFIT in openrouteservices maps to get round route. Attached photo below is the error log.Enter image description here This is my API Interface Call getRoundCoordinates( …
3
votes
2 answers

Google Script App Fails in Incognito Mode

I have a simple Google Script published as a web app with anonymous access. The code is available here and the web app is available here. code.gs function doGet() { return HtmlService.createHtmlOutputFromFile("index").setTitle("Google…
Amit Agarwal
  • 10,910
  • 1
  • 32
  • 43
3
votes
5 answers

React Native Image Upload as Form Data

Postman formdata is working perfectly, but this returns following http 500 error. what is wrong with this block. Response {type: "default", status: 500, ok: false, statusText: undefined, headers: Headers, …}headers: Headers {map: {…}}ok: …
Chanaka
  • 760
  • 1
  • 10
  • 21
3
votes
1 answer

Trying to use dev mode with GAS doPOST

I'm trying to test my apps script doPost function, with postman. so far I have: function doPost(e) { var id = '1L_U7MhmV............................' SpreadsheetApp.openById(id).getSheetByName('responses').appendRow([new Date()]); var params =…
user1592380
  • 34,265
  • 92
  • 284
  • 515
1
2
3
49 50