Activities of "trannguyenphucanh"

Hi,

I solved the issue by upgrading Microsoft.Extensions.Hosting, Microsoft.Extensions.FileProviders.Embedded and all OpenIddict related libraries, which stayed as v6.0.*, to v7.

Then rebuilt the solution, all packages restored successfully and the project started smoothly. The above error with fetching packages were also gone.

I tried restoring abp packages and got the below log: Not sure if it relates to the current issue, but could you take a look?

Hi,

The error log is identical as my 1st post.

Got this, also same error log as my 1st post:

Here you go

Hi,

Could you point out which packages should I look into? I downgraded package Volo.Abp.AspNetCore.Mvc.UI.Theme.Lepton in HttpApi.Host from v7.3.3 to v7.2.3 already but still didn't work.

Answer

Same here, please keep updating until nuget is up.

Just replaced this inside OnApplicationInitialization, from

            app.Use(async (ctx, next) =>
            {
                await next();
            });

to

            app.Use((httpContext, next) =>
            {
                httpContext.Request.Scheme = "https";
                return next();
            });

Solved my problem.

Hi, I decided to break each completed version for each deployment instead of bringing everything at once.

I just deployed v6, encountered this server only accepts https requests then resolved. However, the UI didn't show login page but instead this: Console log:

Hi maliming,

Thanks, migration errors are gone. But unfortunately, it is not the root cause, the problem still persists on my develop environment.

Showing 1 to 10 of 43 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11