Activities of "Leonardo.Willrich"

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");
            }
        }

My console:

Well, it worked partially. When the user logs out, the application is redirected for a different page. I think I should do the same, I just need to know where I can find this page:

@liangshiwei

Perfect! I think that does the trick.

Answer

It's not working for me, I am getting this error below. I am located in New Zealand.

Through command, it got stuck on downloading message. I don't believe it is too big. If I remove --preview, it creates the project really fast, I believe it is already cached.

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.

Answer

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.

Showing 111 to 120 of 145 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13