Activities of "safi"

Hi

I am faing one issue while removing any table from abp suite it's deleting only table.json file not removing the services, interface etc. so could you please let me know why this is happening.

  • ABP Framework version: v4.4.3
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"

Hi

I want to pass selected row id into another page on view buton click. on this button click I am redirecting it to another page so want that id here. Could you please suggest me how can I get this.

Thanks,

  • ABP Framework version: v4.4.3
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"

Hi,

I am using abp framework 4.4.3 with blazor. I want to make name as required field in user form section. Can you please suggest me for the same.

https://prnt.sc/1zs3z1a Please see this screenshot for the same.

Thanks,

  • **ABP Framework version:**4.4.3
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"
  • ABP Framework version: v4.4.3
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no
  • Exception message and stack trace:
  • Steps to reproduce the issue:" I am trying to add user entity reference into my custom entity but it's throwing error becuase in latest version we have identityuser so If I am replacing appuser with identityuser so project build but after that if I again click on save and generate buttom from suite so again it's replacing identityuser with appuser.

Please suggest me solution for this and if possible we can connect on zoom as well.

Thanks,

  • ABP Framework version: 4.4.3
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no
  • Exception message and stack trace: Error occurred on DB migration step! Make sure the project is compiled and working. Command output: Build started... Build failed. Use dotnet build to see the errors.
  • Steps to reproduce the issue: I have upgraded my abp version in existing project. Earlier project version was 4.3.1 but now updated it to 4.4.3 so If I open abp suite and trying to update existing tables fields and cliking on save and generate that time I am getting above error. I have tried to delete dlls also uninstall and install abp suite to resolve this issue but no luck.

Can you please provide me solution for this.

Thanks,

Hi,

I have updated my project version to 4.4.3. Earlier it's version was 4.3 but now I am getting errors like failed to fetch. I have updated my abp and blazor version also run abp bundle command too to update global files so it's updated.

Please see the below errors : https://prnt.sc/1x3bhvu

KIndly please provide me solution for this.

Thanks,

  • ABP Framework version: 4.4.3
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no
  • Exception message and stack trace: TypeError: Failed to fetch at Function.<anonymous> (global.js:792)

Hi,

I want to show all menu's in left side while open the security log page. Please let me know how we can do this.

Thanks,

Hi

In my old project azure login was working but I have upgraded all the packages from abp suite and all things are working fine. Now azure login is not working it's redirecting back to login page after azure login.

To check this issue I have created a sample project from abp suite and just added the azure settings into host appsettings.json file and added below code in hostmodule.cs class.

  private static void ConfigureAzureLogin(ServiceConfigurationContext context, IConfiguration configuration)
        {
            context.Services.AddAuthentication().AddOpenIdConnect("AzureOpenId", "Azure", options =>
            {
                options.Authority = "https://login.microsoftonline.com/" + configuration["AzureAd:TenantId"] + "/v2.0/";
                options.ClientId = configuration["AzureAd:ClientId"];
                options.ResponseType = OpenIdConnectResponseType.CodeIdToken;
                options.CallbackPath = configuration["AzureAd:CallbackPath"];
                options.ClientSecret = configuration["AzureAd:ClientSecret"];
                options.RequireHttpsMetadata = false;
                options.SaveTokens = true;
                options.GetClaimsFromUserInfoEndpoint = true;
                options.Scope.Add("email");

                //options.Events.OnTokenValidated = (async context =>
                //{
                //    var debugIdentityPrincipal = context.Principal.Identity;
                //    var claimsFromOidcProvider = context.Principal.Claims.ToList();
                //});
            });
        }

Now login button is coming, azure login screen is coming but after entring the credential it's redirecting to login page again. Not able to understand the reason because same code is working in ABP 4.1.1 version but it's not working in ABP 4.2.2. Please suggest me some solution for the same it's quite urgent.

Reference Link : https://community.abp.io/articles/how-to-setup-azure-active-directory-and-integrate-abp-angular-application-lyk87w5l

Thanks,

  • ABP Framework version: v4.2.2
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no
  • Exception message and stack trace: not getting any error
  • Steps to reproduce the issue: Create sample project and add azure settings into appsettings.json file under host project.

Hi

I am facing one issue and not able to understand the reason behind it. After reset password it's showing success message but If I click on Go to application button then it's going to swagger link but it should open my blazor link so can you please help me.

Thanks,

Hi

I am using abp io with blazor and have many api's. Now I want to proovide 5 api access to users and don't want them to create access token for this.

So in administration section there is some section which is related to api resources and scopes. Is there any way to provide token directly? I want to give them access token and few api's access.

Please let me know how we can acheive this.

Thanks,

Showing 31 to 40 of 61 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13