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

How can I add the "Microsoft.Reporting.RdlBuildProvider" Build Provider Extension to my website project?

I am having no end of problems in getting a website to display (I was given a zip file of the files). Based on this, it is a problem with my Web.config file not being readable. As it is right there in the project, I don't understand why VS is having…
0
votes
0 answers

Webrequest not returning expected result

I'm trying to retrieve data from our time management service to create a desktop client that warns you when you're close to your maximum work time. To achieve this I want to use HttpWebRequests. This is what I've got by now (qnd): class Program { …
Th1sD0t
  • 1,089
  • 3
  • 11
  • 37
0
votes
1 answer

Make Alfresco Web Script show error 500 as JSON rather than HTML

I am writing an Alfresco Web Script that will be consumed by external computers. When I throw a WebScriptException, I would like the error 500 to come with an error page in JSON, rather than HTML, so that the external computers can parse it. Right…
Nicolas Raoul
  • 58,567
  • 58
  • 222
  • 373
0
votes
1 answer

POST http://exaple.com/index.php?route=checkout/cart/add 500 (Internal Server Error)

I am new to opencart. Some how I managed to create a website after reading online tutorial. The website was worked well, but since two day the add to cart button is not working. Its showing some error on console. I tried different browser but same…
0
votes
2 answers

PHP Odd 500 Server Error

I am encountering this really weird 500 Internal Server Error (End of script output before headers). It happens when I try to execute a .php File which takes fairly long to run. I've taken precautions by adding set_time_limit(120);…
0
votes
1 answer

Creating new user in apache openmeetings API via Ajax

I'm using apache api open meetings. It has been working in login, but when i try to add a new user, I get HTTP Response Error 500 (insufficient permissions). I tried this, but it doesn't work:
0
votes
1 answer

Swift 3: Server Error 500 on uploading Image

I am trying to upload the image to the server but getting 500 server error. Below is my code: public func uploadImage(docID: String, image: UIImage, comments: String, onCompletion: @escaping APIPostCallResponse) { self.postCallback =…
0
votes
1 answer

HttpWebRequest gives 500 status code but is returning JSON from the API?

Question Background: I am attempting to make a simple HttpWebRequest to a Web API that I have hosted in Azure. The Issue: If I access my Web API end point through a browser or a request tool such as Postman I am receiving a JSON response with no…
0
votes
2 answers

HTTP ERROR 500 when running PHP code on server

I've recently created a website front and back end for a client using HTML, CSS, JavaScript/jQuery front end and PHP + MySQL back end. My experience in back end is limited. I created everything locally and it works great, however now I've uploaded…
dT-Nick
  • 11
  • 4
0
votes
1 answer

Paypal IPN 500 with WordPress MemberPress plugin (works in Sandbox)

I use MemberPress plugin to sell courses via Paypal Standard. It uses IPN for creating transactions, pause/resume and cancel subscription. It works perfectly fine when I use my Sandbox account credentials. But it isn't working in case of Live paypal…
0
votes
1 answer

PHP - Server error 500 while processing (not uploading) big file

I try to get an 440mb CSV file into array: $handle = fopen("stuff.csv", "r"); $data = array(); while (($line = fgetcsv($handle, 1000, ';')) !== FALSE) { $data[] = $line; } it breaks up after about 20 seconds, in the PHP ini the…
Eddy Unruh
  • 576
  • 1
  • 5
  • 18
0
votes
0 answers

PHP - FastCGI - Http Error 500.0 - Internal server error

I'm currently working with an IIS server and trying to access an index.php file. To make IIS recognize php files, as it doesn't do it by default, if you try to access a *.php link you normally would get Error 404; so to solve this I found this…
0
votes
2 answers

Why I am getting 500 (Internal Server Error) in Struts 2 while sending data using Ajax?

I am trying to develop a struts 2 web application and sending data via Ajax but the console show an 500 (Internal Server Error). I have tried a log but no solution found. But the operation performed successfully in back end means my data is…
Justin
  • 3
  • 2
0
votes
2 answers

Making call to django web server causes Error 500

I am having an iPad application that does calls to a django server to get data. On the production server calls work just fine, but when I move app to make calls to development server I get an 500 server error (since iPad app works while making calls…
0
votes
2 answers

Ajax jquery.min.js:4 POST 500 (Internal Server Error) laravel 5

I got this error from Ajax call ! it's get action from checkbox then send data by Ajax to controller method, jquery.min.js:4 POST http://localhost:8000/listhotelregisration 500 (Internal Server Error) Here's the code html part:
H.IHYA
  • 27
  • 1
  • 2
  • 10