Customizing portal error pages using WPC seems not to work

Hi,
I am running a EP 7.01 system and have instaled the KMC-WPC component.
My goal is to edit custom error pages. I have followed the help.sap.com
guide, however i don't see any results. When i create a KM-document
iview to a non-existing document, i stll get the default 404 error
page. I have restarted the portal, but without effect. Am i missing something or is the error-page editor not meant for this kind of use? I have also tried to edit the web.xml file, but these errorpages are on a very global scale and not usefull for my purpose
Bas

Hussain,
Yes, it is a KM document not found page
regards,
Bas

Similar Messages

  • Customizing Portal Error Page?

    Is there a way to customize the look and feel of Portal Error Pages?

    I found the section of Portal Configuration document 4.3.7 that shows how to set a global Error Message Page. However, it utilizes the / Administration Portlets / Portal / Error Message Portlet
    Is there a way to modify this portlet? I'm thinking it's a PLSQL portlet. Does anyone know where (what package/procedure/function) it resides in the PORTAL schema?

  • Custom 404 error page only works 75% of the time

    I have made custom HTTP error pages for my app and they work for Mozilla, Opera and Firefox but IE seems to have its own personal 404 error page.
    Anyone know how to make IE work and play well with others and display the custom 404 page like the other 3 browsers do? I did clear the IE cache, twice.
    The environment is Tomcat 5.0.19 (stand-alone, no IIS) running on Window Server 2003 Enterprise
    Thanks for your help!
    Will

    You got to love microsoft products huh. Microsoft has turned on its friendly error pages. Unfortunately, to fix this, you have to have your clients modified their browser settings. Inside the IE browser, do the following:
    1. From menu choose tools->internet options
    2. Choose the advanced tab
    3. Uncheck the checkbox that says "Show friendly HTTP error messages"
    That will do it for ya.

  • Unable to show custom jsf error page !

    Hi all,
    I have a major problem displaying my custom errorpages. That is, they do not show at all!
    I also tried this in a simple project where I have only 1 jsf page, but the behaviour is the same.
    However, If I use a plain jsp page as erropage, then the error page is displayed as expected.
    My web.xml:
    <error-page>
    <error-code>404</error-code>
    <location>/jspErrorPage.jsp</location>
    </error-page>
    <!--error-page>
    <error-code>404</error-code>
    <location>/errorPage.jspx</location>
    </error-page-->
    If I remove all jsf and adf components from the adf-faces error page it does work correctly.
    For some reason the adf and jsf components can not be used in an error page.
    If I try this in the FOD demo application the behaviour is exactly the same !
    No errorpage is shown unless I remove all jsf and adf components.
    Luc
    Edited by: lucbors on Mar 6, 2009 11:28 AM

    hi Johan
    It looks like the filter-mapping/dispatcher element in web.xml is relevant here.
    Default the "adfFaces" filter seems to be mapped like this ...
    <filter-mapping>
      <filter-name>adfFaces</filter-name>
      <servlet-name>Faces Servlet</servlet-name>
      <dispatcher>FORWARD</dispatcher>
      <dispatcher>REQUEST</dispatcher>
    </filter-mapping>If I also add a dispatcher element with ERROR value like ...
      <dispatcher>ERROR</dispatcher>... the behaviour of my application starts to change.
    With such a dispatcher element configured, I can get an error-page configuration like this to "work":
         <error-page>
              <error-code>500</error-code>
              <location>/faces/internalServerErrorFaces.jspx</location>
         </error-page>Using JDeveloper 10.1.3.4.0 I created an example application for this,
    see http://verveja.footsteps.be/~verveja/files/oracle/FacesErrorPageApp-v0.01.zip
    The screenshots in FacesErrorPageApp.png show the page with the buttons that cause exceptions and the error page I get.
    The thing is, this seems to work only te first time (for the first session). So, navigating back and clicking another button only shows the same page again and not the error page.
    If I try something similar in a web-module that does not use ADF Faces, things seem to be OK.
    (The example application has a ViewControllerNoADFFaces project with an errorButtonPageNoADFFaces.jspx page with buttons that will cause an exception and show the internalServerErrorNoADFFaces.jspx page. From that error page I can navigate back an click a different button to cause a different exception to end up on the error page again.)
    Given that this at least looks like an ADF Faces issue, I think a reply from someone from Oracle in this forum thread could be useful. (And you could always create a service request on metalink.oracle.com for this.)
    regards
    Jan Vervecken

  • How can I set up a custom 404 error page on OSX Server?

    I moved my web site to a local server and changed the structure drastically.  Unfortunately I am getting hits for information that was on the old server which I haven't put back yet.  I'd like to set up a custom 404 Error Page to let people know what's up.  In server.app I can set up a 500 error page but not a 404 and when I tried hand coding it into the sites .conf file I really messed things up.  It took me a while to get that all corrected!
    Thanks for any advice,
    Bill W

    Found it!
    Under the web server Advanced Setting set "Allow overrides using .htaccess" then create an .htaccess file in the root directory with the line:
    ErrorDocument 404 notfounderror.html
    Use whatever HTML/PHP/etc. document you have created.

  • How do I create custom HTTP Error Pages for a Weblogic Server

    I need to be able to display custom HTTP error pages such as a 404 from my Weblogic
    Server when my web application is not deployed.
    Is this possible?
    I have seen some suggestions about putting something like:
    <error-page>
    <error-code>404</error-code>
    <location>Error404.jsp</location>
    </error-page>
    in the web.xml for my web application but I can't see how that would work since
    the web application would not be deployed. I need to set these messages at the
    server level.
    Any help would be appreciated!
    thanks

    Your CategoryAxis id="ha_ccm" uses categoryField="period", and this is the label for the your series (i.e. "Quarter 4/2010"). You cannot have multiple categoryFields for the CategoryAxis; it can only use one data field for the labels. You can use data tips and/or label functions to show the individual series' values on the columns.
    Also:
    Your labelField in the ColumnSeries are set to a ColumnSet name instead of a field name in your dataprovider.
    Font must be embedded if you set ColumnChart.showLabelVertically="true".

  • Custom 404 Error page in Sharepoint Foundation 2013

    Hi all,
    How to point to the custom 404 error page in Share Point Foundation 2013. I have seen some links but not working for me. Please me let me know if you have any suggestion.
    Thanks.

    Can i create any page and pass the page url in it,like if i have created a page as custom404.aspx under pages library so do i need to do like this?
    $spsite = Get-SPSite "<http://sharepoint:1000/>"
    $spsite.FileNotFoundUrl = "<pages/custom404.aspx>"
    is this the correct way or i am doing incorrectly??
    please suggest

  • ADF/Webcenter Portal Error Page configuration in web.xml

    Hi All,
    I am using jdeveloper version 11.1.1.6.0.
    I set two error pages in my application by following web.xml entries.
      <error-page>
        <error-code>404</error-code>
        <location>/oracle/webcenter/portalapp/pages/AfError.html</location>
      </error-page>
      <error-page>
        <error-code>503</error-code>
        <location>/oracle/webcenter/portalapp/pages/SiteMaintenance.html</location>
      </error-page>but it does not divert to the AfError.html page but shows 404 error.
    How to solve this.
    Is it possible to set .jspx page in location attribute also.
    Any help is appreciated.
    Require as early as possible

    Hi,
    this should be asked on the WebCenter forum. However, how likely is it that your error page also causes a 404 error? The message in you web.xml file are for site not found and site not available. So unless you redirect to something that is accessible you wont be able to tell whether it works or not
    Frank

  • Oracle Portal Error Page

    Where is the oracle portal error page stored? Can we override the default error page?
    Please advise, thanks.
    The error page shows when object is not found
    Home Help
    Error
    Error
    Object not found. (WWC-50003)
    Back
    Copyright© 2005, Oracle. All Rights Reserved
    The error page shows when user has no permission
    Home Help
    Error
    Error
    You do not have permission to perform this operation (WWC-41415)
    Logout
    Copyright© 2005, Oracle. All Rights Reserved
    Regards,
    Eric

    Actually the two error page shown occurs when the page is not found in the portal builder(Object not found) or the user is not allowed to access the page(do not have permission to perform..). These error page are shown automatically by oracle portal. I like to know where these error page is shown in oracle portal so that i can edit the page to suit my needs like change the header etc.
    I went to the sample error page to edit but the change was not reflected in the two error pages above so these two error pages might be stored in some location such that when either object not found or no permission, the error pages are reflected in the webpage.

  • I keep trying to download Photoshop CS3 and a get a 404 error page, does Photoshop CS3 not working with a new Mac operating system?

    I keep trying to download Photoshop CS3 and a get a 404 error page, does Photoshop CS3 not working with a new Mac operating system?

    you must also use a browser that allows cookies.  try a different browser or download from adobe.com
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5.5 (win), 5.5 (mac) | 5.4 (win), 5.4 (mac) | 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Custom HTTP error page

    How do I create custom HTTP error pages for WebLogic Server 6.1
              

    Refer to the following document:
              http://e-docs.bea.com/wls/docs61/webapp/components.html#101747
              Eric
              "Sejal" <[email protected]> wrote in message
              news:3bc1e18f$[email protected]..
              > How do I create custom HTTP error pages for WebLogic Server 6.1
              

  • Is there is any way to show the nomber of shares of any post in facebook page using android view not desktop view

    is there is any way to show the nomber of shares of any post in facebook page using android view not desktop view

    Sorry, its not related to Mozilla Profucts.

  • My interface -- buttons (back, forward, reload), firefox tab, groups, etc. -- does not look like the sample on your "firefox features" page. ("Groups" seems not to function at all.) I'm running the current firefox 4 download on Windows XP. Can you help?

    My interface -- buttons (back, forward, reload), firefox tab, groups, etc. -- does not look like the sample on your "firefox features" page. ("Groups" seems not to function at all.) I'm running the current firefox 4 download on Windows XP. Can you help?

    cor-el
    Thank you for your swift reply. I don't know that this has helped me, as I've reached my level of tolerance for fooling with this annoying little problem - for today anyway. It has been going on since I "up" graded to Firefox 4. My wife is running 3.6.x on her laptop with none of this foolishness. As BLASPHEMOUS as it may sound, I've gone back to IE for the time being even though I don't like it 1000th as much as I do Firefox.
    Not just to rant here, I would say that I found a way to put some buttons on the right side of the toolbar that immediately gave me permission to "back, forward, and reload", but upon closing the browser and going out for dinner with the wife, I find on return that not only are those buttons NOT still on the toolbar, but I can't find them anymore. I think they were in "add-ons" found under I believe Add-On Manager.
    I did also manage to achieve back/forward functionality running Firefox in SAFE mode, but this meant no No-Script, among other things, and I've grown too fond of that particular little script to give it up.
    I've rebooted, restored, and reinstalled, can't get this formerly completely reliable program to work like it always has. Before looking around on here, I was beginning to think it was my PC.
    THANK YOU FOR YOUR HELP, cor-el. I'm going to see if I can get on live chat on Monday.
    bossman344

  • HT4437 Is it possible to zoom in photos when using airplay? It seems not to work at all. I can only zoom in if i use mirroring and even then i have to reconnect mirroring each time I chage an albumor even go from the photo to the album level.

    Is it possible to zoom in photos when using airplay? It seems not to work at all. I can only zoom in if i use mirroring and even then i have to reconnect mirroring each time I chage an albumor even go from the photo to the album level.

    No.
    I find it extremely frustrating that Apple does not care for such an obvious bug affecting one of the basic funcionalities of AirPlay. Unless, of course, if there's something I don't know - but I've done some research and it seems that plenty of people have same issue and no solution is settled.

  • I downloaded iMovie 11 butit seems not to work with IDVD6. Do I need to get the Newest IDVD? Which IDVD is the latest and where do i download it from?

    I downloaded iMovie11 but it seems not to work with iDVD6. Do I need to down load the latest IDVD?

    Where do I download it from?
    You need to use iDVD 09 or iDVD 11.  These are only available on disk.
    IDVD is a wonderful piece of software and well worth the low cost of $40.
    http://www.amazon.com/Apple-MC623Z-A-iLife-VERSION/dp/B003XKRZES/ref=sr_1_1?ie=U
    If you live in a state where Amazon collects sales tax you may prefer the link below.
    http://dealmac.com/lw/artclick.html?1,527850,1872219

Maybe you are looking for

  • Internet connection too slow, is there a way to speed up the itouch?

    So I can connect to Facetime, but all I see is a picture of a person and then the Itouch freezes and shuts down. I think it is because my internet connection is too slow, because it only doesn't work in my apartment (it works at places with quicker c

  • Where to pass Special G/L Indicator to BAPI_ACC_DOCUMENT_POST.

    Hello SAPients, I'm using BAPI_ACC_DOCUMENT_POST and I'm passing all data in tables ACCOUNTGL and CURRENCYAMOUNT. My understanding is that using this BAPI is equivalent to posting data using TCode FB01. FB01 has a field named "Special G/L Indicator".

  • Recommendations for an HDMI switch/hub for Apple TV 2012

    This seems to be a sticky issue - and probably made worse by the release of the new Apple TV (March 2012) edition with 1080p. I want to buy an HDMI switch/hub so I can plug three devices (Laptop/XBox 360/AppleTV) into my one free HDMI port - so I don

  • Have used Photoshop Elements and Album 2.0 for years

    Album and Elements 2.0 have been good for my use for many years. Have now upgraded to a new Windows 8 computer and migrated data and programs from a 10 year old XP system. What will happen to my 7,500 photos if I upgrade to PSE 11? Took a long time t

  • WLS patching

    I went to your post and the docs on OTN, I don't see anywhere mentioned about backing up the WLS home before patching. Basically, in my env, I have several WLS servers; however, I only had one server to go to MOS to get and downloaded the patches and