Umbraco Cloud upgrade 13-17 issue

Hey all!

I have a very basic umbraco 13 cloud site, no views only used with content delivery api with some extensions added for filtering and sort.

I’ve upgraded the necessary nuget packages and did the code changes. Followed here to be exact;

After all these I can run the project with no error, get this page, which is expected as I removed my modals

when I go to /umbraco, there’s no login screen.

I am not sure what am I missing.

My console errors are like following;

and logs doesn’t say anything.

Here’s the packages I have;

Anyone experienced the same issue?

Yep, likely this one:

Edit: ah okay, you have more problems than just the frontend not showing up (but likely the above is the problem).

I would start with checking your Program.cs to make sure it looks like the default:

WebApplicationBuilder builder = WebApplication.CreateBuilder(args);

builder.CreateUmbracoBuilder()
    .AddBackOffice()
    .AddWebsite()
    .AddComposers()
    .Build();

WebApplication app = builder.Build();

await app.BootUmbracoAsync();


app.UseUmbraco()
    .WithMiddleware(u =>
    {
        u.UseBackOffice();
        u.UseWebsite();
    })
    .WithEndpoints(u =>
    {
        u.UseBackOfficeEndpoints();
        u.UseWebsiteEndpoints();
    });

await app.RunAsync();

Remove any custom stuff for now and try the default first.

Removing custom stuff worked. I’ll re add them to see what was the issue! Thank you @sebastiaan :heart:

2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.