Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Alexandre Locas 52 posts 219 karma points
    May 14, 2019 @ 17:17
    Alexandre Locas
    0

    How to write a component that handles a failure to boot

    We have a case where umbraco fails to boot with a message like :

    Boot failed: Umbraco cannot run. See Umbraco's log file for more details.
    

    Is there a way to deal with this, like display an error message to user ?

    We tried using OnApplicationError / Application_Error events but those events are not triggered.

    Thank you

  • Marc Goodson 2157 posts 14434 karma points MVP 9x c-trib
    May 14, 2019 @ 18:57
    Marc Goodson
    0

    Hi Alexandre

    Anything revealing in the log file?

    Have a look in app_data/logs/

    the trace log file for today will have lots of info about startup failure...

    There is a stand alone Log Viewer to help view the logs: https://www.microsoft.com/store/apps/9N8RV8LKTXRJ

    Usually it's something injected into something that isn't registered with DI, but the logs should help!

    regards

    Marc

  • Alexandre Locas 52 posts 219 karma points
    May 14, 2019 @ 19:34
    Alexandre Locas
    0

    Hi Marc, thanx for the information but I am not trying to find the cause but rather how do deal with it if I ever have a similar problem in the future. How can I bypass the standard error message and rather display a friendly message to the user ?

  • Marc Goodson 2157 posts 14434 karma points MVP 9x c-trib
    May 14, 2019 @ 22:07
    Marc Goodson
    0

    Ahh I understand

    Looking here: https://github.com/umbraco/Umbraco-CMS/blob/b0ef69a4ec1dcdefc6a102c82e17837ef3e37482/src/Umbraco.Core/Runtime/CoreRuntime.cs

    if any of those setup methods fail, then the caught exception throws the BootFailedException. (like 163)

    var bfe = e as BootFailedException ?? new BootFailedException("Boot failed.", e);

    so that might be before or after composition...

    this sets the RuntTimeState as BootFailedException and this module here:

    https://github.com/umbraco/Umbraco-CMS/blob/853087a75044b814df458457dc9a1f778cc89749/src/Umbraco.Web/UmbracoInjectedModule.cs#L429

    seems to explain why there is no nice 500 page.

    The BootFailedException is here:

    https://github.com/umbraco/Umbraco-CMS/blob/853087a75044b814df458457dc9a1f778cc89749/src/Umbraco.Core/Exceptions/BootFailedException.cs

    hmm, that's probably not helping much!

  • David Sheiles 69 posts 339 karma points
    May 24, 2021 @ 09:49
    David Sheiles
    0

    Did you ever figure out how to display a custom page on boot failure Alexandre?

  • Alexandre Locas 52 posts 219 karma points
    May 25, 2021 @ 11:19
    Alexandre Locas
    1

    Hi David, no we did not find a way to do this. Good luck.

  • Huw Reddick 1932 posts 6722 karma points MVP 2x c-trib
    May 25, 2021 @ 12:34
    Huw Reddick
    0

    Does it set a http error code?

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies