Customize CDN error page

Dear Sir.
If users are not in the CDN coverage area, CE will return a built-in error page below. Is It possible to customize it? If yes, how?
Regards

The document http://www.cisco.com/en/US/products/sw/conntsw/ps491/products_configuration_guide_chapter09186a00801cc940.html#1064227 has the step-by-step procedure for customizing the Error messages in CE.

Similar Messages

  • Can be customize a error  page

    Hi !
    When I create a User only view ,when This User access a part of Portal that rend a error .I want to customize this error page.
    regad!
    thangtk

    Actually the ErrorPage parameter in the proxy plugin will work only when we redirect the request to some wrong Weblogic port where no/someother application is running.But when the plugin is correctly configured to redirect to a port where our desired application is running, and in this case you bring down the backend server, then you get the same page which I was talking about.I want to customize this page.

  • Customization of Error Page displayed via wwerr_api_error_ui.show_html

    Hello,
    I'm writing PL/SQL-Portlets and use the
    wwerr_api_error_ui.show_html procedure to display some error
    messages. How can I customize the layout of the generated error
    page?
    If this is not possible, how can I implement this on my own? I've
    tried to use owa_util.redirect_url on the occurance of a failure,
    but than the html-code genererated before the error occured is
    still displayed. What do I have to do, to cancel the html-output
    and print the error message?
    Thanks,
    Mirko

    Hi,
    You can use the wwerr_api_error_ui.show_html to print upto three
    separate lines of custom text, with or without hyperlinks.
    You can derive specific error messages from the error stack using
    the wwerr_api_error.get_top or get_errors methods to get the
    error records.
    You could parse the message name, context etc. from the message
    record and even write your custom text.
    So by a single call to show_html you can print something like:
    Error encountered in check_customer(actual context) validation.
    (Print actual error message.)
    Refresh Page ( use hyperlink to p_portlet_record.page_url)
    The spec is:
    procedure show_html
    (p_help_url in varchar2 default null,
    p_text1 in varchar2 default null,
    p_url1 in varchar2 default null,
    p_text2 in varchar2 default null,
    p_url2 in varchar2 default null,
    p_text3 in varchar2 default null,
    p_url3 in varchar2 default null);
    More details in the API reference at:
    http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/PDK/
    plsql/doc/sdk14shp.htm
    If you want to do your own HTML, make sure you trap your error
    conditions, keep a record of your specific error messages, and
    then clear the stack. Then just print your error messages as part
    of the calls from the procedure that traps the error condition (
    either show or from the customizations procedures) using htp.p
    calls.
    You could use the owa_util.redirect call, when the user presses,
    say the 'submit/OK' button and then, add parameter for the error
    message name. In the show procedure, first check for the error
    flag and accordingly display your error messages.

  • How do I customize the error pages in Firefox 24?

    I'd like to customize the HTLM/CSS/JavaScript of all the Firefox 24 error pages, i.e. the network connectivity lost, DNS and other standard error pages.

    Hello ekan,
    This can be done, but you're going to need to get pretty dirty to get it done. Ready?
    First, learn about userContent.css:
    http://kb.mozillazine.org/UserContent.css
    http://kb.mozillazine.org/Profile_folder
    Now, the easiest way to learn about the elements on the error page is to go to the source. So, go to the chrome folder in the Firefox program folder, usually C:\Program Files\Mozilla Firefox\chrome in Windows Explorer. Find the file called classic.jar and copy that somewhere else. Rename classic.jar to a .zip file and extract it, preferably to a folder called classic at whatever location you are at. Then, open the classic folder and navigate to ...\classic\skin\classic\global and find the file called netError.css.
    Open the netError.css file in Wordpad (Notepad doesn't seem to work for me because then the lines all run together). See all the code that starts with the # symbol? Those are the things you can easily change. Copy all the #ELEMENT code into your userContent.css file.
    Now you can start making changes to see what you like. I would make small changes at a time to see if it works the way you want. After each change, you need to close and restart Fx. Here's one to get you going:
    CODE: SELECT ALL
    #errorPageContainer {
    -moz-border-radius: 0px !important;
    background-color: red !important;
    That should make the box that surrounds the error message be red with square corners instead of white with a rounded corner border. Remember that before every semi-colon, you need to put !important or the change won't do anything.

  • [OAM] Customize System Error Page

    Hi all,
    we have a protected resource with an already implemented custom login form. This login form is not the one in the war, but an external (an static HTML).
    We also need to customize the System Error page (blue screen) that is thrown when an server error occurs. I am following the OAM documentation but it seems confusing with my scenario here. It says to open the oamcustompages.war, modify the servererror.jsp file and re-deploy it. But then, documentation establish to configure "customWar" in the context of the authentication screen. I can't do this because I would loose the login page (and this is mantained by an external development team so this is not an option).
    The customer wants to modify the blue screen not only for changing the look and feel, but also for catching error and perhaps make redirections (at now, the instruction is to know how to change that page).
    Any help?

    Hi Matt,
    I think the page you are being redirected to is servererror.jsp, which is deployed within oam-server.ear, within its own ngsso-web.war application. You could deploy your own version of this. I assume you could also modify the ErrorPage setting in oam-config.xml to define your own page, though I have not tested this. This would be a customisation, so you would be responsible for the system behaviour when doing this.
    Regards,
    Colin

  • How do I customize the error page

    Our IT department has adopted a policy that requires a standard look and feel for all error pages encountered in any web application. To this end I need to be able to modify the error page that shows up on the browser when an unexpected error is encountered or a validation error is sent to a new page.
    How can I modify this page? Is there a template for it, and if so where?
    Any help is greatly appreciated,
    Adam Cumming

    Hello Bhavin,
    I have already started looking at this links (you copied twice Marc Lancaster's page, instead of Roel Hartmans's, which is actually : http://roelhartman.blogspot.com/2009/09/transform-ora-xxxx-messages-into.html)
    I'm focused on Marc Lancaster's solution (Friendly Exception Messages), which is also interesting because it covers Ajax manipulation inside Apex (i'm using Apex 2.1).
    But it seems that the apex.ajax.ondemand(...) line doesn't do anything to my application. Here is the code of this line :
    var lRequest = new apex.ajax.ondemand('test', function(){     
                                                          var l_s = p.readyState;
                                                        if(l_s == 1||l_s == 2||l_s == 3){
                                            }  else if(l_s == 4){
                                            gReturn = p.responseText;
                                            $s('ajax-drop',gReturn); }
                                            else{return false;}
                                              );Because that's the first time I'm trying Ajax, I don't see what could be silly (I just copied the code from Marc's example).
    Here is the application process, called 'test' :
    begin
      htp.p('Hello !');
    end;Thanks a lot.
    Dovik

  • How to customize the error pages in iPlanet IAS 6.0?

     

    Hello ekan,
    This can be done, but you're going to need to get pretty dirty to get it done. Ready?
    First, learn about userContent.css:
    http://kb.mozillazine.org/UserContent.css
    http://kb.mozillazine.org/Profile_folder
    Now, the easiest way to learn about the elements on the error page is to go to the source. So, go to the chrome folder in the Firefox program folder, usually C:\Program Files\Mozilla Firefox\chrome in Windows Explorer. Find the file called classic.jar and copy that somewhere else. Rename classic.jar to a .zip file and extract it, preferably to a folder called classic at whatever location you are at. Then, open the classic folder and navigate to ...\classic\skin\classic\global and find the file called netError.css.
    Open the netError.css file in Wordpad (Notepad doesn't seem to work for me because then the lines all run together). See all the code that starts with the # symbol? Those are the things you can easily change. Copy all the #ELEMENT code into your userContent.css file.
    Now you can start making changes to see what you like. I would make small changes at a time to see if it works the way you want. After each change, you need to close and restart Fx. Here's one to get you going:
    CODE: SELECT ALL
    #errorPageContainer {
    -moz-border-radius: 0px !important;
    background-color: red !important;
    That should make the box that surrounds the error message be red with square corners instead of white with a rounded corner border. Remember that before every semi-colon, you need to put !important or the change won't do anything.

  • How to customize the "Invalid URL" error page?

    If you type in an invalid page name in the URL you'll get a page with an error message like this:
    Error: Not a valid URL. (WWC-50014)
    Object not found. (WWC-50003)
    Copyright) 2001, Oracle Corporation. All Rights Reserved
    We need to be able to customize this error page!!
    Can't find any documentation on how to do that. Also searched these forums without any luck.
    Any ideas?

    Hello,
    Customize the template it's not complicated.
    You can create a copy of 0BROADCASTING_TEMPLATE70 (e.g. ZBROADCASTING_TEMPLATE70), make some modifications (with BEx Web Application Designer) and assign this template on Broadcasting field of transaction
    RSCUSTV27.
    Even if you are using Broadcast 7.0, this template is 3.x. So, you have to open with Web Application Designer 3.x
    If you want to remove the E-mail field, I think this is ONLY possible via ABAP tables.
    Check the table RSRD_DISTTYPE  (se16 transaction).
    There you can suppress the MAIL distribution type.
    Good luck.
    Edward John

  • Customization of workspace error pages

    Hi,
    Can we customize the error pages coming in adobe livecycle? If yes can we do it using eclipse?
    Can someone please provide me with a guide or link

    Hi,
    Please check the below links
    How to the Change the Application Stopped Message
    How to Change the Dispatcher Running, No Server Connected Message
    http://help.sap.com/saphelp_nw70/helpdata/en/65/18fc3f9ec4e669e10000000a155106/frameset.htm
    Thanks
    Santosh

  • Customizing 400 and 500 error pages

    Hello,
    We are using default 404 and 500 error pages, how can I customize these error pages?
    I have changed the default error page under global settings, however it is still not showing the error page which I have changed?
    Could someone help in this regard.
    Thanks in advance
    Message was edited by:
    419365

    Normally those are page not found errors.
    I got the steps from metalink. See below.
    Subject: Changing the default error pages
    Hi,
    Steps mentioned below are used to have customize error message page for http 404 error,you can find out error no. for 'internal server error' and apply same steps.
    1.Create an HTML file (Say test.html) as per your requirement and place it in
    application_home\Apache\Apache\htdocs folder.
    2.Edit the HTTPD.conf file and Uncomment the Local redirects as follows
    # 2) local redirects
    ErrorDocument 404 /test.html
    Save it.
    3. Restart the HTTP server.
    ********

  • Customising the error page

    The situation is:
    A portal page is configured that requires login before accessing this
    page. Oracle portal logon server PL/SQL API is used to verify the user
    id, password and privilege. Thus, whenever the user dosen't have enough
    privilege to access this page, the logon server will raise an exception
    and redirect to an error page.
    Now the question is,
    can we customise the error page to fit our needs or can we change the
    error redirect parameter somewhere in Oracle portal.
    Regards
    Mahantesh

    Actually, when a user has insufficient privileges to access a particular page, or area of the product, it is the partner application (in this case the Portal) which delivers the error page -- not the Login Server.
    Unfortunately, the answer to your question is, no. There is no configurable way to customize the error page.

  • Weblogic error Page

    Is there a way to change the Weblogic error page (404,500,...)?

    By default we removed the "pumpkin" page. Many customers are not interested
    in having the term WebLogic displayed by default. But, you should still be
    able to change this error Page. The way to do this is inside of your Web
    application deployment descriptor Web.XML.
    Michael Girdley
    BEA Systems
    Learning WebLogic? http://learnweblogic.com
    "vr" <[email protected]> wrote in message
    news:3a9e78d9$[email protected]..
    >
    I can't remember if it was in WebLogic 4.5 or 5.1, but we used to get a404
    weblogic error page with a gold background and a graphic symbol of "w" for
    weblogic. Now in WebLogic 6.0 we just get a plain white page with black
    text for the 404 error. Is that available at all in WebLogic 6.0? Ifnot,
    how can we get it? It seems like in the previous versions of WebLogicthey
    allowed you to customize you error pages if you wanted in
    weblogic.properties
    I can't find any reference to doing that in WL 6.0 through the Console
    (never mind that I can't find an actual weblogic.properties or equivalentto
    alter manually). So any insight/suggestions on this issue?
    Thanks,
    V

  • Customize the 404 and 500 server error pages

    how can I customize the 404 (http 404 error) and 500
    (internal server error) server error pages?
    Where are the corresponding pages?
    thanks for your help
    Celestino

    Theoretically, quite easily:
    The default error pages can be overriden by any html/jsp/servlet resource. You have
    only to map the error codes with your own error pages within the Deployment Descriptor
    file (web.xml).
    See the documentation for details.
    HTH
    Ales
    "Celestino" <[email protected]> wrote:
    >
    how can I customize the 404 (http 404 error) and 500
    (internal server error) server error pages?
    Where are the corresponding pages?
    thanks for your help
    Celestino

  • How do I customize the Firefox 4 error page?

    how do I customize the error message... the one with "server not found" and "try again"

    FF4 combined a bunch of files into [https://developer.mozilla.org/en/About_omni.jar omni.jar] -- unzip it to edit (it's a zip file, unzip to its own folder, don't just do it inside of the firefox folder). It's located different places depending on your OS; in Ubuntu, it's usually in /usr/local/firefox/ or /usr/share/firefox.
    Depends on what you want to edit in the error page, but here are two possibilities inside omni.jar:
    * omni.jar-unzipped/chrome/en-US/locale/en-US/global/netError.dtd
    * omni.jar-unzipped/chrome/toolkit/global/netError.xhtml
    You'll need to redo any changes any time you upgrade Firefox. Back everything up too, just in case!

  • How to customize error page

    Hi,
    Reports 10g.
    I use a validation trigger for a parameter. When it returns FALSE, I have an error page with REP-546: Invalid parameter input.
    Is it possible to customize this page ? Change the text for example ?
    Thank you

    Hi,
    Customization of error messages is not supported.
    Navneet.

Maybe you are looking for

  • Store issues after updating to Windows 8.1 Update 1. 0xc03f42e5 / 0xc03f424e

    On my new laptop I was installing store/modern apps just fine earlier tonight, now since the update to the new 8.1 update the Store has become very unstable. When I click install on an app in the store, I get the loading animation at the top for a ve

  • Can I use local gsm networks in the Philippines for the iPhone 4S?

    Anyone could help me with the said issue? In my knowledge, there is still no existing partnerships or deals between apple and our local GSM network providers in the Philippines so I am wondering if I could use any local GSMs for the New iPhone. By th

  • Problems getting Operations on Device Mobile

    Hi! Can anyone help me with the following problem ??? We do not get any operation on Orders and notifications on a Device Mobile. Thanks you ======================================== Have you done the configuration for the operations in SPRO? In the m

  • Optimum Config???

    What is the optimum config for a new Imac using Final Cut Pro? - suggestions? Thanks for any assistance.

  • Help with FDM / vb script

    Hi, We are using Hyperion 11.1.1.3 suite. We want to load data to data warehouse from FDM (using pull adapter). We wrote trial vb script for SQL server as below and its working : /* need help in converting the below script for Oracle server from SQL