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
2 answers

How to add a slash to PUT rest api request url in js file

I am making a todo app with django restapi and backbone. c, r, d are done but when i am trying to update, PUT request is going without a slash http: //127.0.0.1:8000/api/lists/41 instead of http: //127.0.0.1:8000/api/lists/41/. and i am getting an…
Manoj Ch
  • 15
  • 7
0
votes
0 answers

500 error upon require_once('usercake/models/config.php')

I have a file with one line: , and it gives me a 500 error. What could be the reason for this? My usercake installation is not modified in any way.
0
votes
0 answers

500 Internal error after 10 minutes running script

I am trying to achieve following: Parse XML sitemap of website (working) Download source of every single page Echo something like "Done" or url of website Sleep for few seconds to avoid crashing server I don't know why, but after about 10 minutes…
Filip
  • 95
  • 10
0
votes
1 answer

Joomla 500 error after enable cache

I need your help guys.. I enabled conservative caching on my Joomla website due to very slow loading speed. It reduced loading time from 5 to 2 seconds. But I am getting 500 error on some K2 pages (for example: any link on this page:…
Filip
  • 95
  • 10
0
votes
1 answer

Why will php pthreads not work? http error internal server code 500.0

I am attempting to make use of threading within my php application, but for reasons unknown to myself I cannot seem to set php up to use pthreads. Here are a few details FYI to help diagnose the issue: My environment is IIS on Windows 10. My php…
MikeO
  • 391
  • 4
  • 17
0
votes
1 answer

Can't clear cache Symfony in production

Despite of all my attempts to understand the problem, I still can't figure out what is happening. I developped a website with Symfony 2.7 which perfectly works in dev mode. When I tested it in production mode, an error 500 is returned. The…
0
votes
1 answer

Mean-stack handling 500 (Internal Server Error)

Currently this is what I have as my nodejs/expressjs serverside code: // Init Express Web Framework var express = require('express'); var app = express(); var path = require('path'); // Set view engine to EJS & set views…
Pex
  • 519
  • 2
  • 12
  • 30
0
votes
2 answers

Custom 404 and 500 errors not working

Got custom 404 and 500 error pages which don't work. I'm given the following error for both pages, when trying to access directly or via error: error img .htaccess content: DirectoryIndex index.php RewriteEngine on RewriteCond $1…
brad
  • 1,407
  • 19
  • 33
0
votes
1 answer

HTTP Status 500 - Request processing failed; nested exception is org.hibernate.QueryException: could not resolve property

I'm new in Spring MVC and Hibernate and I encountered a problem. I've got Child table creating by Hibernate which is connected with User table (Many to One). When Hibernate creating Child table, there is added automatically 'user_object_id' - by…
KamilosD
  • 333
  • 1
  • 2
  • 12
0
votes
2 answers

Django - 500 internal server error "no module named django"

django return 500 internal server error (apache 2.4.10, ubuntu 15.04, django 1.9.6) apache log: [wsgi:warn] mod_wsgi: Compiled for Python/3.4.2. [wsgi:warn] mod_wsgi: Runtime using Python/3.4.3. [mpm_event:notice] AH00489: Apache/2.4.10 (Ubuntu)…
big
  • 73
  • 1
  • 9
0
votes
0 answers

Recursion PHP function returns 500 error

Hi I'm have recursion function that makes binary tree array, so from that array( array( 'name' => 'John', 'id' => 1, 'mother_id' => 2, 'father_id' => 3 ), array( 'name' => 'Lucy', 'id' => 2, 'mother_id' => 5, 'father_id' =>…
Roman
  • 394
  • 1
  • 2
  • 12
0
votes
2 answers

Custom Errors MVC 5

Can someone explain me how to add custom 404 and 500 Errors to my project? I tried by adding this to Web.config:
0
votes
0 answers

how do I fix HTTP ERROR 500

I'm basically building a website with Wordpress and when I swapped the theme for the first time, it didn't let me do the change of theme. Then a bit later, I straight up couldn't view the website or the Wordpress page. Did I do something wrong? The…
0
votes
1 answer

500 Internal Server Error , ajax , setInterval

From my javascript file I am calling an interval function, here's the code setInterval(function() { $.getJSON('/home/trackUnreadMsgs', function(result) { $.each(result, function(i, field) { var temp = "#messby" + result[i].from; …
Danish Sofwan
  • 333
  • 3
  • 9
0
votes
0 answers

How to use automatic retry in Google Drive / Fetcher services in Objective C

The problem I am using google-api-objectivec-client library to work with Google Drive API. I am creating 10 folders inside appDataFolder (for example) without any delays and it is too fast and I am constantly getting errors for 9/10 of my…