hi
https://github.com/abpframework/abp/pull/23561
hi
The error is :
The introspection request was rejected because the access token was issued to a different client or for another resource server.
The localhost:44362 website sign in again. Then the localhost:44334 uses the wrong token.
This is because these websites all use localhost.
You can try opening these websites in Chrome and Chrome Incognito, or in a different browser.
Everything will work after they use different domain names.
Thanks.
hi
Can you share your test project?
liming.ma@volosoft.com
Thanks.
我们没有太多的经验, 你的http://localhost:44348 网址是否存在这些css文件?
它通常需要abp install-libs命令还原
你可以检查下nginx的日志
error_log logs/error.log;
access_log logs/access.log;
hi
You can try to add a blazor-global-styles.js js file with code below and register to bundle system:
if (!localStorage.getItem("lpx:containerWidth"))
{
localStorage.setItem("lpx:containerWidth", "boxed");
}
options.ScriptBundles.Configure(BlazorLeptonXThemeBundles.Scripts.Global, bundle =>
{
bundle.AddFiles("/blazor-global-styles.js");
});
Thanks.
hi
You can check the Blazorise version from https://www.nuget.org/packages/Volo.Abp.BlazoriseUI#dependencies-body-tab later.
Thanks.
hi
I think this change happened on Leptonx >= 4.3.0
The public website uses its own _Footer.cshtml file.
Sorry for this. Your ticket has been refunded.
Thanks. Have a good day.
hi
You can customize the EmailConfirmation URL by overriding the Volo.Abp.Account.Emailing.AccountEmailer service.
The Account/EmailConfirmation page will use the current tenant ID to query the user.
http://auth.cooptrustcu.cloverleafcms.dev/Account/EmailConfirmation?userId=7c35ab2c-1f30-b33f-1b3a-3a1c93671327&__tenant=7a5bc172-edda-3f19-78f6-3a1c7aa58661&confirmationToken=CfDJ8xx
Thanks.
hi
Can you check the TenantId and IsDeleted values for your user table?
Perhaps the current tenant differs from your user.
You can also enable EF Core debug logging to view the User query SQL statement.
https://abp.io/support/questions/8622/How-to-enable-Debug-logs-for-troubleshoot-problems
Thanks.