Activities of "fadijb"

  • ABP Framework version: v 7.1.1
  • UI type: MVC
  • DB provider: EF Core
  • Tiered (MVC): no
  • Exception message and stack trace: An unhandled exception occurred while processing the request. InvalidOperationException: The resource type 'Horizon.HRMS1.Localization.HRMS1Resource' does not have an accessible static property named 'MobileNoFormat'. System.ComponentModel.DataAnnotations.ValidationAttribute.SetResourceAccessorByPropertyLookup()

TargetInvocationException: Exception has been thrown by the target of an invocation. System.Reflection.MethodInvoker.Invoke(object obj, IntPtr* args, BindingFlags invokeAttr)

  • Steps to reproduce the issue:"

Hi How to make integration between feature and role

I create new module and added this module as a feature every thing working fine but when I disable feature its still exite inside role

when I open page

I need to hide it from role when disabled from features like other build in features

  • ABP Framework version: v7.0.3
  • UI type: MVC
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"
var moduleMenu = new ApplicationMenuItem(
        MainSettingMenus.Prefix,
        context.GetLocalizer<MainSettingResource>()["Menu:MainSetting"],
        //"~/MainSetting",
        icon: "fas fa-cogs"
        );
        

I just remove this line

//"~/MainSetting",

its woking thank you

   public async Task ConfigureMenuAsync(MenuConfigurationContext context)
    {
        if (context.Menu.Name != StandardMenus.Main)
        {
            return;
        }

        var moduleMenu = AddModuleMenuItem(context); //Do not delete `moduleMenu` variable as it will be used by ABP Suite!

        AddMenuItemNationalities(context, moduleMenu);

        AddMenuItemCountries(context, moduleMenu);

        AddMenuItemCities(context, moduleMenu);
    }

    private static ApplicationMenuItem AddModuleMenuItem(MenuConfigurationContext context)
    {
        var moduleMenu = new ApplicationMenuItem(
            MainSettingMenus.Prefix,
            context.GetLocalizer<MainSettingResource>()["Menu:MainSetting"],
            "~/MainSetting",
            icon: "fas fa-cogs"
            );

        //Add main menu items.
        context.Menu.Items.AddIfNotContains(moduleMenu);
        return moduleMenu;
    }

When I create new Module how I can add this module to tenants features

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

When Add new module root menu keep showing without login


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

How to use CRUD Page Generator commercial to add new Entity to the new Created Module

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

Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.

If you're creating a bug/problem report, please include followings:

  • ABP Framework version: v6.0.1
  • UI type: MVC
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no
  • Exception message and stack trace:

Executing ChallengeResult with authentication schemes (["oidc"]). Executed action project.Web.Public.Controllers.AccountController.Login (project.Web.Public) in 159.2363ms Executed endpoint 'project.Web.Public.Controllers.AccountController.Login (project.Web.Public)' An unhandled exception has occurred while executing the request. An unhandled exception has occurred while executing the request. System.InvalidOperationException: IDX20803: Unable to obtain configuration from: 'System.String'. ---> System.IO.IOException: IDX20804: Unable to retrieve document from: 'System.String'. ---> System.Net.Http.HttpRequestException: The SSL connection could not be established, see inner exception. ---> System.Security.Authentication.AuthenticationException: The remote certificate is invalid according to the validation procedure: RemoteCertificateNameMismatch, RemoteCertificateChainErrors at System.Net.Security.SslStream.SendAuthResetSignal(ProtocolToken message, ExceptionDispatchInfo exception) at System.Net.Security.SslStream.CompleteHandshake(SslAuthenticationOptions sslAuthenticationOptions) at System.Net.Security.SslStream.ForceAuthenticationAsync[TIOAdapter](TIOAdapter adapter, Boolean receiveFirst, Byte[] reAuthenticationData, Boolean isApm) at System.Net.Http.ConnectHelper.EstablishSslConnectionAsync(SslClientAuthenticationOptions sslOptions, HttpRequestMessage request, Boolean async, Stream stream, CancellationToken cancellationToken) --- End of inner exception stack trace ---

  • Steps to reproduce the issue:" When you log in from project_Web_Public

from visual studio 2022 Log file

Yes its alreay included but still need log in using the command abp login <username>. or it will not compile

Showing 1 to 10 of 20 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11