up vote 4 down vote favorite
1
share [g+] share [fb]

I'm working on a client site who is using Umbraco as a CMS. I need to create a custom 404 error page. I've tried doing it in the IIS config but umbraco overrides that.

Does anyone know how to create a custom 404 error page in Umbraco? Is there a way to create a custom error page for runtime errors?

link|improve this question

44% accept rate
feedback

5 Answers

In /config/umbracoSettings.xml modify <error404>1</error404> 1 with the id of the page you want to show.

<errors>
   <error404>1</error404> 
</errors>

Other ways to do it can be found at Not found handlers

link|improve this answer
How can I find the page id? – Gthompson83 Sep 26 '08 at 16:43
You can find the page ID by going to the Umbraco admin, and looking at the status when hovering over the page. – Kearns Oct 7 '08 at 18:36
The page ID is on the properties tab on the content section. – Echilon Aug 11 '10 at 11:12
feedback

umbraco also supports culture dependent error pages in case you're working with multilingual sites...

Config changes a tiny bit. Instead of

<errors>
  <error404>1050</error404>
</errors>

you'd now write

<errors>
  <errorPage culture="default">1</errorPage>-->
  <errorPage culture="en-US">200</errorPage>-->
</errors>

Cheers, /Dirk

link|improve this answer
feedback

First create an error page (and template) in your umbraco installation. Let us say error.aspx. Publish it. Then edit config/umbracoSettings.config.

Under <errors> section
    <error404>1111</error404>

Where 1111 is the umbraco node ID for the error.aspx page

Node ID can be found by hovering mouse on the error node in content section. It's usually a 4 digit number.

Then edit the web.config:

    In <appSettings> section
    change <customErrors mode as show below:
<customErrors mode="RemoteOnly" defaultRedirect="~/Error.aspx"/>
link|improve this answer
feedback

Its umbracoSettings.config in Umbraco 4.

link|improve this answer
feedback

Currently umbracoSettings.conf has to be configured the following way in order to make it work in a multilingual way:

    <errors>
        <!-- the id of the page that should be shown if the page is not found -->
        <!--        <errorPage culture="default">1</errorPage>-->
        <!--        <errorPage culture="en-US">200</errorPage>-->
        <error404>
            <errorPage culture="default">1</errorPage>
            <errorPage culture="ru-RU">1</errorPage>
            <errorPage culture="en-US">2</errorPage>
        </error404>
    </errors>

Please note the error404 element which surrounds the errorPage elements, as well as the comments omitting this small yet important detail...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.