Activities of "Mgandhi"

I have updated the Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonX version to 2.3.2 from version 2.3.0 .But still facing the same error . As we are using custom URL for host and tenant. The URL sent in the forgot password email for the tenant should consists tenant name but its still sending the token with host URL only and as the correct url is not formed we are getting page not found error.

Provide us with the following info:

  • ABP Framework version:v7.3.2
  • UI Type: Angular
  • Database System: EF Core (MySQL)
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes
  • Exception message and full stack trace:
  • Steps to reproduce the issue:

The problem is while using forgot password the link to reset the password for tenant user its not working its throwing 404 page not found error For the host its picking up the correct url and the correct page is getting displayed but the same is not working with the tenant url (subdomain) .Using reset password for tenant still reflects the host url with the correct tenantId. We have added the methods to reset password in the account module controller also included the pages after that still getting 400 error mentioned below. Here is the TenantDomainResolver we are using in the Auth server.

public class TenantDomainResolver : TenantResolveContributorBase
{
    public const string ContributorName = "Custom";

    public override string Name => ContributorName;

    private static readonly string[] ProtocolPrefixes = { "http://", "https://" };

    private readonly string DomainFormat;

    private readonly string Environment;

    public TenantDomainResolver(string domainFormat, string environment)
    {
        DomainFormat = domainFormat;
        Environment = environment;
    }
    public override async Task ResolveAsync(ITenantResolveContext context)
    {
        var httpContext = context.GetHttpContext();

        var referer = httpContext.Request.Headers["Referer"].ToString();

        if (string.IsNullOrEmpty(referer))
        {
            return;
        }

        referer = referer.RemovePreFix(ProtocolPrefixes);
        var extractResult = FormattedStringValueExtracter.Extract(referer, DomainFormat, ignoreCase: true);
        if (extractResult != null && extractResult.IsMatch)
        {
            string subdomain = extractResult.Matches[0].Value;
            if (subdomain != Environment)
            {
                if (Environment.IsNullOrEmpty() || subdomain.EndsWith(Environment))
                {
                    context.Handled = true;
                    int lastIndex = subdomain.LastIndexOf(Environment);
                    context.TenantIdOrName = subdomain.Substring(0, lastIndex);
                }
            }
        }

    }
}

Provide us with the following info:

  • ABP Framework version: v7.3.2
  • UI Type: Angular
  • Database System: EF Core
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes Identity Server Separated (Angular)
  • Exception message and full stack trace:
  • Steps to reproduce the issue:https://docs.abp.io/en/abp/latest/UI/AspNetCore/Tag-Helpers/Tabs using the following document I try to add tabs in my angular component but I am getting the following error .Is there anything I am missing on the angular side?. Please advise.

Any Update on this ?

In the above image as we can see the source code is available for the specific component but same is not available for horizontal-wizard form but for the wizard form its not given. . How to access the source code for the same.

  • ABP Framework version: v7.2.2
  • UI Type: Angular /
  • Database System: EF Core
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes Identity Server Separated (Angular)
  • Exception message and full stack trace:
  • Steps to reproduce the issue I have download source code using the below given URL it but it doesn't contain contains css and html code for wizard component.

https://docs.abp.io/en/commercial/latest/themes/lepton-x/index#source-code how can I use horizontal-wizard form in leptonx theme in angular?

The Angular project is still not building.

I have upgraded the leptonx theme package to 2.3.version as you said but still the web-public , Auth server and Angular projects are not building I am adding the screenshot of the errors below.

I have shared the project please check your email.

Hi The error is generated when we try to build the application using the command "dotnet build" for the auth-server. After updating the Abp version we not able to run the application only the above generated error has been reflected.

Zobrazeno od 1 do 10 z celkem 15 záznamů
Made with ❤️ on ABP v8.2.0-preview Updated on března 25, 2024, 15:11