Yep, the only way to close that is by task manager and killing abp-suit.exe or closing the command prompt window.
Also, it seems that the CurrentUser.IsAuthenticated is not working properly. After login, the user is redirected to the Index page, but it get into a loop redirecting to the same page over and over again.
I've added a console message to debug it:
protected override void OnInitialized()
{
if (!CurrentUser.IsAuthenticated)
{
Console.WriteLine("Redirecting to Login");
NavigationManager.NavigateTo("/authentication/login");
}
}
@liangshiwei
Perfect! I think that does the trick.
I am really trying my best to download that, but getting an error when trying to create a solution. Can you tell me whenever I can download that besides creating a new project through Abp Suite? I am using Commercial version.
Hi @Alper
It is still hapenning. I can't create a new project. I've double check and I am using version 4.3.0 rc.1 for ABP Suite as well. I am checking the parameter "Preview version". If I don't check that, the application is created correctly.
@liangshiwei
I haven't found those classes. Instead, I do have AbpSettingManagementBlazorModule on DependsOn.
namespace TVD_Holdings_Ltd.AvalancheOCP.Blazor
{
[DependsOn(
typeof(AbpAutofacWebAssemblyModule),
typeof(AvalancheOCPHttpApiClientModule),
typeof(AbpAspNetCoreComponentsWebAssemblyLeptonThemeModule),
typeof(AbpIdentityProBlazorModule),
typeof(SaasHostBlazorModule),
typeof(AbpSettingManagementBlazorModule),
typeof(LeptonThemeManagementBlazorModule),
typeof(AbpAccountAdminBlazorModule),
typeof(AbpAuditLoggingBlazorModule),
typeof(TextTemplateManagementBlazorModule),
typeof(LanguageManagementBlazorModule),
typeof(AbpIdentityServerBlazorModule)
)]
public class AvalancheOCPBlazorModule : AbpModule
What I would be missing?
Is this new settings form for SMTP available in Blazor template? I've updated for the latest version but I can't find them.