Activities of "maliming"

hi https://zoom.us/j/95523457231?pwd=a0s5S3dFQ0RjbDdXa2syaGZJSXVwZz09

https://docs.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.components.webassembly.authentication.remoteauthenticatorviewcore-1.onloginsucceeded?view=aspnetcore-5.0

@using Microsoft.AspNetCore.Components.WebAssembly.Authentication
@using Volo.Abp.DependencyInjection
@inherits Volo.Abp.AspNetCore.Components.WebAssembly.LeptonTheme.Pages.Authentication
@attribute [ExposeServices(typeof(Volo.Abp.AspNetCore.Components.WebAssembly.LeptonTheme.Pages.Authentication))]
@attribute [Dependency(ReplaceServices = true)]

<Card>
    <CardBody>
        <RemoteAuthenticatorView Action="@Action"  OnLogOutSucceeded=@this.OnLogOutSucceeded OnLogInSucceeded=@this.OnLogInSucceeded >
            <LoggingIn>
                <LoadingIndicator/>
            </LoggingIn>
            <CompletingLoggingIn>
                <LoadingIndicator/>
            </CompletingLoggingIn>
            <LogOut>
                <LoadingIndicator/>
            </LogOut>
            <CompletingLogOut>
                <LoadingIndicator/>
            </CompletingLogOut>
            <LogOutSucceeded>
                 @L["Authentication:YouAreLoggedOut"]
            </LogOutSucceeded>
        </RemoteAuthenticatorView>
    </CardBody>
</Card>

@code{
    public void OnLogInSucceeded()
    {
        Console.WriteLine("OnLogInSucceeded");
    }

    public void OnLogOutSucceeded()
    {
        Console.WriteLine("OnLogOutSucceeded");
    }
}

services.ConfigureApplicationCookie(options =>
{
    options.AccessDeniedPath = "/MyAccessDenied";
});

how can overide the existing Account/AccessDenied page?

https://docs.abp.io/en/abp/latest/UI/AspNetCore/Customization-User-Interface#overriding-a-page https://community.abp.io/articles/how-to-customize-the-login-page-for-mvc-razor-page-applications-9a40f3cd https://support.abp.io/QA/Questions/240/How-to-customize-the-login-page

https://zoom.us/j/95101853668?pwd=QkMwblFMOVdBd1JKUXdQMzNOK2tDQT09

selinkoykiran

Can i check it via ZOOM? liming.ma@volosoft.com

hi

I believe that the problem can be seen remotely, but I need a project to understand and solve, can you use a template project to show your problem?

Answer

it gives a 500 error.

Can you share the error logs?

hi ChetanKumbhar

Can you share a simple project to reproduce your problem? liming.ma@volosoft.com

Answer

hi serdar.genc@talentra.net

How many permissions does your app have? You can resolve it by configure FormOptions. I will check and fix it.

Configure<FormOptions>(options =>
{
    options.ValueCountLimit = 1024 * 2;
    //options.
});

The fix PR https://github.com/abpframework/abp/pull/8810

Showing 7881 to 7890 of 8483 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 18, 2024, 05:54