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
8
votes
3answers
2k views
How to send a Status Code 500 in ASP.Net and still write to the response?
I have an ASP.Net single-file web service (a .ashx file containing an IHttpHandler implementation) which needs to be able to return errors as responses with 500 Internal Server Error status codes. ...
8
votes
2answers
1k views
How to make some URL mappings depending on the environment?
When getting an HTTP status code 500, I want to display 2 different pages according to the running environment.
In development mode, I want to display a stackStrace page (like the default Grails 500 ...
7
votes
3answers
688 views
How to stop a 500 .net error created calling the 500 error page
Here's an interesting one for you.
I've got my custom 500.aspx setup which is called when a 500 error occurs in my application. The 500.aspx also sends me an email with the error details.
I've ...
6
votes
2answers
570 views
django media url is not resolved in 500 internal server error template
I'm using a 500.html template for my app, which is an identical copy of the 404.html with some minor text changes.
Interestingly the {{ media_url }} context variable will not be resolved by the ...
5
votes
6answers
169 views
How to trigger 500 Internal Server Error in PHP?
How can i trigger 500 Internal Server Error or 404 Page Not Found Apache errors in PHP?
For 500 Internal Server Error i have tried following code :
header("HTTP/1.0 500 Internal Server Error");
...
5
votes
2answers
495 views
How to configure grails to always show own error page on status 500
In UrlMappings.groovy, I have set "500"(controller:'error', action:'error') so that my own error controller (and view) is used.
It usually works, however when I tried tampering with the request input ...
5
votes
3answers
7k views
ASP.NET Application Goes to 500.21 … until IIS Reset + Clear Tempoary ASP.NET Cache
We're seeing an odd pattern in our QA Lab. We have two ASP.NET applications, each deployed on the same Windows 2008 SP2+ box. We have our App Pool running in a Domain Account, and set to never ...
5
votes
2answers
4k views
WebException when reading a WebException's response stream
I'm communicating with a web server from .Net. The web server throws a 500 internal server error and writes a detailed error message.
I'm trying to read the error message that is received from a web ...
4
votes
1answer
98 views
ERR_ICAP_FAILURE with ASIHTTPReqeust on Orange France
We have an iOS Application that connects to a WebDav server using the ASIHTTPRequest library - which works very good.
One of our customers has the problem of a 500 status code with an ...
4
votes
1answer
592 views
Django 1.3 logging: 500 errors are not logged
I'm struggling to make the 'django.request' logger work as advertised - 500 errors don't seem to propagate to handlers attached to it.
In the default logging configuration for every new project, the ...
4
votes
2answers
62 views
What other 5xx errors could be occuring and how to I find/track them?
I have a Classic ASP/VBScript site running on IIS 6, and a program called SmarterStats (found via an earlier question) providing various stats and info from the server logs. This is an internal site, ...
4
votes
5answers
3k views
How to send 500 Internal Server Error error from a PHP script
I need to send "500 Internal Server Error" from an PHP script under certain conditions. The script is supposed to be called by a third party app. The script contains a couple of die("this happend") ...
4
votes
3answers
882 views
Silverlight 4 OOB + Browser HTTP Stack + Client Certificates = FAIL?
I'm having an issue where IIS 7.5 (on Windows 7 64-bit) is failing when I call it from an out-of-browser Silverlight 4 app using SSL and a client certificate, with the message "The I/O operation has ...
4
votes
1answer
727 views
PHP emitting 500 on errors - where is this documented?
In this question the OP mentions PHP throwing a 500 error automatically when error_reporting is off, and XDebug changing that behaviour.
That got me curious, as I've never heard of PHP automatically ...
4
votes
3answers
1k views
How to test 500.html in (django) development env?
I am using Django for a project and is already in production.
In the production environment 500.html is rendered whenever a server error occurs.
How do I test the rendering of 500.html in dev ...
4
votes
5answers
5k views
How can I trace IIS 500 errors thrown by my webservice
I have deployed a new version of an ASP.NET webservice. The IIS logfile reports an errorcode 500 when this service is being called by a client. My own (test) can use the service without any error. I ...
3
votes
1answer
107 views
500 Server Error on Classic ASP - Cannot get more details
Windows 2008 R2 Standard x64, with IIS 7.5
When trying to load any ASP page (in IE right on the server), I instantly receive a "HTTP/1.1 500 Server Error". I have un-ticked "show friendly error ...
3
votes
1answer
285 views
How do I get PHP to display Apache's 500 error page when it encounters an error, instead of a blank page?
I have apache directives set up for custom error docs for 404, 403, etc, as well as 500. However, PHP, upon encountering a fatal error, displays a blank page instead of triggering the apache 500 ...
3
votes
4answers
380 views
How to test 500.html in rails development env?
I want to test the 500 error pages in my Rails app using the development environment.
I already tried this in config/environments/development.rb:
...
3
votes
1answer
556 views
Is it really possible to POST files with python?
So I'm struggling with this for a second day in a row and still nothing. Found few solutions on the internet but still I'm getting "Internal Server Error" when trying to send files with POST. The idea ...
3
votes
3answers
2k views
C# HttpWebRequest ignore HTTP 500 error
I'm trying to download a page using the WebRequest class in C#4.0. For some reason this page returns all the content correctly, but with a HTTP 500 internal error code.
Request.EndGetResponse(ar);
...
3
votes
3answers
791 views
django on nginx & apache : where to handle 404 & 500 error?
I know there is 404 error handling in django.
But is it better to just put that config in nginx ?
This ST thread has the solution for putting it. -
...
3
votes
1answer
83 views
Error rendering Councillors Online web part: [The remote server returned an error: (400) Bad Request.]
I am implementing a WCF based solution and all was working fine until I started to process larger quantities of data.
The Solution worked well in DEV where we added large quantities of daata when we ...
3
votes
6answers
2k views
How to send status code “500” for generic error page in IIS?
I am using a generic error page using ASP.NET's <customErrors> directive.
<customErrors mode="On" defaultRedirect="500.html" redirectMode="ResponseRewrite">
</customErrors>
...
3
votes
2answers
992 views
PHP Force Apache error
Thanks to this forum, I learnt PHP header function does not actually send header to Apache server but only to the client.
What I wanna do is to generate an error 500, and let Apache displays its ...
3
votes
4answers
190 views
Should I Return “500” or “404” if a Requested Image is not Found?
I work with code written by other people, occasionally I am left somewhat confused and at these times Stack Overflow saves me. Please, save me again.
Our site allows people to upload images and later ...
3
votes
1answer
2k views
WCF AuthenticationService in IIS7 Error
I have a WCF Server running on IIS 7 using default application pool, with SSL activate, the services is installed in a SBS Server 2008.
I implement client application services with wcf and SQL 2005 ...
3
votes
3answers
361 views
Find Project by Permalink, 404 if not found
I changed my show controller to find records by their permalink rather than their id (for SEO juiciness).
def show
@project = Project.find_by_permalink(params[:id])
end
But, if I type in ...
3
votes
5answers
11k views
AJAX Call to PHP script gives me 500 Internal Server Error?
I make an AJAX request like so using JQuery:
$.ajax({
type: "GET",
url: "getvideo.php",
data: 'videoid=' + vid,
I use firebug to tell me whats going on and it tells me a 500 ...
3
votes
1answer
822 views
Disable caching of errors when using Apache as a proxy
When you having Apache proxying (using either ProxyPass or RewriteRule), if the destination returns an error (500 series status) then Apache won't proxy any more requests for 30 seconds. I know ...
2
votes
3answers
200 views
Google App Engine 500 error
So I've deployed my app to GAE, but all I get is a 500 error on the index page, which is just a plain crossroads site. Since I am not at all an expert on Java, I need some help with decoding the error ...
2
votes
2answers
503 views
Debugging HTTP 500 (Internal Server Error) in WCF Service / Staging
I have some WCF services which are running great locally; client can consume them and the server is putting data in the DB as expected. The problem is that when I deploy these to a staging machine, ...
2
votes
2answers
159 views
PHP - 500 instead of error
I have a page written in PHP. I do not have access to the server. I'd like to make so that instead of showing an error message when PHP encounters an error, it gives a 500.
2
votes
1answer
415 views
c# How to get error information when HttpWebRequest.GetResponse() fails
I am initiating an HttpWebRequest and then retrieving it's response. Occasionally, I get a 500 (or at least 5##) error, but no description. I have control over both endpoints and would like the ...
2
votes
1answer
953 views
HttpWebRequest.GetResponse() returns error 500 Internal Server Error [closed]
I'm using HttpWebRequest to make a request to a url:
HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(urlAddress);
HttpWebResponse resp = (HttpWebResponse)req.GetResponse();
but it throws ...
2
votes
1answer
647 views
500.19 error with IIS7.5
I am getting the following error, even after I unlock my website. Any reasons?
HTTP Error 500.19 - Internal Server Error
The requested page cannot be accessed because the related configuration data ...
2
votes
0answers
684 views
HttpWebRequest error 500 (java.lang.NullPointerException)
I am trying to get content of http://validator.w3.org/mobile/check?docAddr=www.facebook.com in C#. This is my code:
HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(url);
...
2
votes
2answers
460 views
Why do I get an error 500 when I send POST data to an ASP.NET MVC site through Android?
I'm trying to create an android app to check my tests scores of my engineering school. In order to download the Word containing the scores, I need to login to the portal.
I thought it would be simple ...
2
votes
2answers
229 views
Php's set_time_limit throws a 500 error?
When I use set_time_limit and the script runs for any amount of time greater than 360 seconds, it throws a 500 error.
359, nothing, 360 and above, error.
I don't have access to php.ini, how can I ...
2
votes
3answers
192 views
How a website should handle a database crash
I am currently creating a website in php that has a database backend (can be either MySQL or SQL Server) and I realized recently that if my database crashes at any time, my website will not run ...
2
votes
8answers
2k views
Uploadify http error 500 on Linux
I am getting an http 500 error when using uploadify on Ubuntu.
The server has write permissions on the folder.
Same code works on windows local machine.
You can see the html and the actual error ...
2
votes
2answers
780 views
500 Server error: Premature end of script headers:
I Looked everywhere to find an answer but nothing fits my case.
Let me explain.
Environment
I have a website in php that works with a solr indexation server.
It's based on CodeIgniter
Changes ...
2
votes
2answers
816 views
How to simulate an HTTP 500 error on my ASP.NET app?
I want to simulate this error so I can check a generic error page is displayed, not the HTTP 500 one, in light of the recent security vulnerability.
We include special processing in the site itself ...
2
votes
0answers
305 views
Get “Response code = 500” error randomly when running cucumber
For some reason I keep getting a response code of 500 when I run cucumber, even though all the tests pass. The error occurs randomly for different tests, every time I run it. Sometimes all tests pass ...
2
votes
4answers
311 views
How do you detect what page caused the Internal Server Error?
So, in my .htaccess file I have this ErrorDocument lines:
ErrorDocument 500 http://www.example.com/500
Since my server runs multiple websites from the same core files, I just want to redirect all ...
2
votes
1answer
1k views
Impossible to show errors with PHP under IIS7.5
The server is : Win 2008 R2
Php version is 5.2 if I remember correctly. (has been installed along with wordpress & mysql with WPI).
I did install wordpress along with arras-theme. On some pages I ...
2
votes
1answer
388 views
apache & php 500 error nightmares
I was trying to add curl support to php on a VPS, and after logging in and trying to perform a php upgrade, my site gives me a 500 error every time I try to access it.
So, I tried refreshing apache ...
2
votes
0answers
554 views
HTTP 500 ERROR on CAS Server while setting SSLVerifyClent as “required”
I have 3 servers, a Apache Server, a JBOSS Server and a CAS Server for SSO.
The Apache Server resolve all request with a domain such as www.request.com, and the path of CAS Server is ...
2
votes
1answer
172 views
500 Internal Server Joomla
I changed the file permissions on all my files and directories in my Joomla site and I am getting the 500 Internal Server error.
What should be the right file permissions settings.
Thanks
2
votes
2answers
380 views
Fastcgi 500 error on preg_match_all in PHP
I'm trying to set up some exotic PHP code (I'm not an expert), and I get a FastCGI Error 500 on a PHP line containing 'preg_match_all'.
When I comment out the line, the page is returned with a 200 ...