The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
15 views

CloudBees and Custom Error Pages

Does CloudBees allow you to define custom error pages beyond what you can to with a traditional Java web app (via web.xml)? For instance, if a CloudBees app-cell instance goes down due to ...
1
vote
1answer
28 views

which one is better: CustomErrors in web.config or application_error?

I'm trapping 404 errors in my MVC website. I have the option to either do that via adding the customerrors element in web.config or application_error, but I don't know which one is better. What is the ...
0
votes
0answers
30 views

Custom ErrorPage is not Working with [HandleError(ExceptionType = typeof(NotImplementedException), View = “CustomErrorView”)]

I am trying to handle exception in asp.net MVC application using [HandleError]. I changed in web config <customErrors mode="On" /> Its not working for Cutom Error Like NotImplementedException ...
0
votes
0answers
43 views

Spring MVC - Render Error on last stable view

I'm using Spring MVC.Up to now I have been using SimpleMappingExceptionResolver to render an error page when there is an exception. Now there is a requirement to render the error on the last stable ...
0
votes
0answers
27 views

500 error page not showing on Heroku

I'm trying to get a custom 500 error page to show on Heroku, running rails 3.2.11 I've followed the steps at: https://devcenter.heroku.com/articles/error-pages The process worked fine for the ...
1
vote
2answers
47 views

[Solved]Custom, dynamic error page with Spring framework

I would like my App to display a custom error page when an Exception is thrown. The response containing the page should have the rigth HTTP status and contain the exeption message and possibly other ...
0
votes
1answer
73 views

How to get Prestashop current user id?

I used the below code to try to get the current user ID in prestashop.. am placing this code in another php file in my module directory and call it through by the module file. $id = ...
1
vote
1answer
155 views

<error-page> tag in web.xml doesn't catch java.lang.Throwable Exceptions

I have a web-app developed with servlet & JSP. I configured my app to throw an IllegalArgumentException if I insert bad parameters. Then I configured my web.xml file in this way: ...
0
votes
1answer
52 views

Not allowing access to error page via URL using mod_rewrite

I have my custom error page at /errors/404.php and I would like that to be able to be used when apache can't find a file, but I would like it not able to be used by simply requesting the URL ...
0
votes
1answer
173 views

aspxerrorpath=/ in url causes custom error page to not work

I'm trying to get a site pci compliant. If you visit (dummy ip): http:someipaddress/ZNYTMHXO.ashx Then the user correctly sees the html from the page I have stated in my web config: ...
0
votes
1answer
70 views

How to handle Custom error pages for 500 error in kohana 3.3

How to use custom error pages for 500 error in kohana 3.3. I have tried using the custom error pages for 404 error and its working. I have just refered kohana official site but i have no idea how to ...
0
votes
1answer
46 views

Turn CustomErrors off and on quickly for production and development

I develop a lot of ASP.NET web forms. During testing, I have customErrors off, then I have a ResponseRedirect custom error for when I move the form into production. I'm wondering if I can simplify my ...
0
votes
1answer
43 views

MVC 3 Error Pages Not displying on Dev Server

I have created custom views for an MVC app. I let the errors bubble up to the Application_Error handler in my Globals.asax file and perform a redirect to an error controller which renders those ...
-1
votes
1answer
44 views

Html error pages translation? [closed]

Is there someone who knows a website that gives the classic html error pages in different languages? I looked at wikipedia, google, youtube and other famous websites but i found nothing. I am looking ...
2
votes
1answer
108 views

Handling UnauthorizedAccessException with custom errors in MVC 4 Application

I have enabled the global error handling for an application by applying the HandleError attribute within the filterConfig registration. public class FilterConfig { public static void ...
0
votes
1answer
36 views

How to add a default error page using httpErrors

i have successfully added a custom 404 page. what I want to do is to create another custom error page that is displayed when there is any error other than 404. e.g. 500, 403 etc. this is what I have ...
1
vote
0answers
121 views

How can I get a custom error page to display and rewrite the URL to something friendly?

I've been pounding my head against the wall with what I see as a very simple task. Quick background: I am using URL Rewrite with IIS7 I am using a Rewrite Map to map /ErrorPage.aspx to /Error ...
3
votes
1answer
232 views

Websphere custom error page not working

I have been struggling to get the Websphere custom error page for the errors such as 404 (File not found). I have added the following to my web.xml under /WEB-INF/ <error-page> ...
0
votes
0answers
67 views

Can't redirect to error.jsp page

I have a Result.jsp page which reads an xml file. If the file is absent it throws a user defined exception class. I have included <%@page errorPage="Error.jsp" %> in the jsp and <%@ page ...
0
votes
1answer
44 views

Configure error page for @PathVariable type mismatch

Suppose I have a controller: @Controller public class SomeController { @RequestMapping(value = "{id}/object.do") public String showObject(@PathVariable("id") Integer id, ...
0
votes
0answers
247 views

Custom error pages in mvc 4 application, setup with Windows authentication

I have an intranet application setup with windows authentication. Like in most applications, certain parts of the application are accessible to specific roles only. When a user not in desired role ...
0
votes
0answers
70 views

Custom Error Message While importing Workbook (sharepoint 2010)

I have An Excel Web Access Webpart.I want a custom error message to be displayed when invalid excel workbook is trying to be imported.Step By Step Explanation is expected as I am new To sharepoint. ...
1
vote
0answers
15 views

Why does ExecuteURL strip the existing headers where File doesn't?

It seems to be generally known that serving custom error pages with a responseMode of ExecuteURL rather than File results in the HTTP status code not being maintained. The remaining headers are also ...
1
vote
1answer
179 views

Displaying information about the exception in a custom 500 error jsp page

I would like to customize my 500 error page and also log the exception details that caused the 500, is there a way to get this info? how do I reference it?
0
votes
0answers
29 views

Custom error pages (403,404,etc) for all subdomains

I managed to setup a custom error handler (for 403 and 404 errors) in PHP, that does log the error details to a file and also sends me a mail. I've set it up on 3 subdomains by copying the required ...
2
votes
1answer
212 views

Absolute path for error_page in nginx?

Is there a way I can set an absolute path for nginx error_pages? Not absolute as in http://, but absolute as in /usr/var/nginx/errors/500.html.
0
votes
0answers
87 views

How to display an error page for static files when using existingResponse=“PassThrough” in IIS 7

To be able to get my application (Umbraco CMS) to handle 404 errors, I need to have following setting in my web.config: <httpErrors existingResponse="PassThrough" /> It works well for ...
0
votes
1answer
81 views

Nested custom error pages in IIS 7

. . I'm trying to set up IIS 7 to use custom error pages, but I'm running into a problem that I can't seem to get around. I've looked nearly everywhere for an answer to this, and have come up empty. ...
0
votes
0answers
9 views

“Server Error” Message when applying for a “Google Nonprofit Membership”

When trying to apply for a "Google Nonprofit Membership" I clicked on "Apply to a Google Nonprofit" (link: https://google-for-nonprofits.appspot.com/application). Once on this page it asked me to log ...
3
votes
2answers
148 views

Can a JSP error-page cause problems?

There is an option in java web applications to handle exceptions by defining error-page in web.xml: <error-page> <error-code>500</error-code> ...
0
votes
1answer
30 views

Is there a way to have a Heroku error/maintenance url served directly without the iframe

Heroku allows you to turn "maintenance mode" on for your applications, and also allows you to specify a custom url to be served during this period. I just tried this out and discovered that Heroku ...
1
vote
4answers
206 views

Python flask web application with multilanguages support by host and prefix

I have one server with flask application instance and have several domain which mapped to this server by DNS. My site must support several languages by host and prefix: mysite.com - english ...
0
votes
2answers
154 views

Symfony2 - Custom error pages are never shown

I'm trying to customize the error.html.twig, error403.html.twig, error404.html.twig and error500.html.twig, so far i've tried to get the error403.html.twig error caused by an a AccessDeniedExceptionw ...
3
votes
1answer
177 views

Apache custom 404 page that returns 404 error

I have a custom 404 error page on my apache (404.php) and it works normally, but if someone or any search engine requests the /404.php page, the server returns 200 (OK), because the page actually ...
0
votes
0answers
86 views

Use ErrorDocument in .htaccess when using friendly urls

I'm having some problems during the error handling of a webpage with friendly urls (and mod_rewrite) turned on in a PHP 5.2 website. I manage the url rules from a framework, so I need to move all the ...
1
vote
0answers
80 views

Fallback from dynamic error page to static error page

I know, we should always use static error pages, but in my case I've got to use a dynamic error page "ErrorPage.aspx" with a .cs file. Now since we are running a security audit for https certificate; ...
0
votes
1answer
62 views

Non-existent images returning status code 200 rather than 400

I do the following code to check if an image exists: public bool DoesImageExist(string imageUrl) { bool exists = false; try { HttpWebRequest request = ...
1
vote
1answer
533 views

show the requested page at error-404.jsp

In the error page I would like to display the url what the user requested. in my web.xml: <?xml version="1.0" encoding="UTF-8"?> <web-app ...
1
vote
2answers
58 views

custom errors in asp

I am trying to do an error page which redirect to it whenever an error occurs. This is my code: <customErrors defaultRedirect="Error.aspx" mode="On" /> which is working fine ...
0
votes
1answer
168 views

How to config IIS to redirect to custom error page when accessing unsupported extension

I've tried some ways to deploy my custom error page (e.g. error.aspx) onto my website: Added customErrors: <customErrors mode="On" defaultRedirect="error.aspx" /> Added httpError: ...
1
vote
2answers
330 views

.net mvc 404 Custom Error page only work sometimes

I'm trying to make an 404 Action on my MVC 4 site to answer a default Image wherever the site gets a 404 on any image. Everything WORKS FINE when i run locally, but when i publish my website on my ...
1
vote
2answers
106 views

IIS 7.5 Windows 2008 R2 Gives 500 remotely and custom 404 locally

I've created the following base controller to show a custom 404 on InvalidOperationException (view not found for instance). public class HandlesViewNotFoundController : Controller { protected ...
0
votes
0answers
66 views

incorrect response code when using custom error page

When custom error pages are enabled in web.config on IIS 7, I see the following two response codes in HttpFox when trying to access a non-existent resource: (1) /undefined 302 Found (2) ...
-1
votes
1answer
90 views

Custom Error Page for Apache

My .htaccess file: AuthType Basic AuthName "FORBIDDEN AREA" AuthUserfile "../htdocs/forbidden/.htpasswd" Require valid-user <Directory /server> Order allow,deny Allow from all ...
0
votes
0answers
72 views

Custom error pages for a case

I have a application deployed in Websphere application server. Some times the users will enter the context root wrong. It is something like this Actual: http:// machineA:9080/Capture instead they ...
1
vote
5answers
643 views

custom error page in asp.net

I have web application in asp.net. I have to implement custom error page. Means if any eror occurs(runtime). I have to display exception and stacktrace on errorpage.aspx shall i handle from master ...
0
votes
0answers
108 views

iis error pages not working for every url

So i'm trying to set up a single global custom error page in iis. I am doing this through the GUI by clicking on sites->error pages. This is putting this block in a web.config in the root www ...
0
votes
1answer
515 views

custom error pages in IIS for Windows 7

In windows 7 I'm trying to set up custom error pages. One for 404, one for 500, and one catch all for any other error (client side or server side) that a user may encounter when something times out, ...
1
vote
1answer
62 views

How can I change the customError configuration set by the web.config during runtime?

I currently have a customError node in my web.config like the following: <customErrors mode="On" redirectMode="ResponseRewrite" defaultRedirect="~/error.aspx"> <error statusCode="404" ...
1
vote
0answers
52 views

Error Page Not Shown - when wrong context root is given

I have one application deployed on JBoss 7.x under the context root "helloworld" that has: welcome.jsp and error.jsp. The custom error page specified in the web.xml DD as: <error-page> ...

1 2 3 4