Activities of "EngincanV"

Hi, Are you saying that in an ABP application we are forced to use the Google SMTP server? And therefore create a gmail email address for the sending of emails from the application.

Hi, no we do not have to use the Google SMTP server.


I misunderstood your question, sorry for that. I'll check what we can do to overwhelm your problem and write you back asap.

Hi, you can define the page layout as follows in your page(*.cshtml):

@{
    PageLayout.Content.Title = L["Forming"].Value;
    PageLayout.Content.BreadCrumb.Add(L["Forming"].Value, url: "/my-url");
    PageLayout.Content.MenuItemName = MyMenuNames.Consumables;
}

When you add a breadcrumb you can also specify it's URL.

https://github.com/abpframework/abp/issues/13999

If somebody else also struggles with this, it seems that it will be fixed in 6.0 final. Thanks.

Yes, we are planning to implement it in v6.0.

Hi, this problem is related to the Google SMTP server and it's not related to ABP. So, please search it on Google.

Probably, you need to setup your application's IP address to the Google SMTP server.

Also, you can check: https://support.google.com/a/answer/176600?hl=en#zippy=%2Cuse-the-gmail-smtp-server

Hi, ABP Tag Helpers are for MVC / Razor Pages applications only.

See: https://docs.abp.io/en/abp/latest/UI/AspNetCore/Tag-Helpers/Index#abp-tag-helpers

Hi,

Also, i think it would be worth cleaning the project template when you select LeptonX as there is still stuff that seems to be for Lepton only such as :

  • We've removed lepton-related lines/files and it'll be available within the next release.

Im trying to change the leptonx logo in order to put our own one. I cant find any docs about this (i do find for lepton, but not for leptonx) nor find where in the code it should be done?

  • We'll update LeptonX documentation and add customization sections.

To change the logos you can use the following code block in your CSS file (global-styles.css):

/* for dim and dark theme styles */
:root .lpx-theme-dim, :root .lpx-theme-dark {
    --lpx-logo: url('/images/logo/logo-light.png');
    --lpx-logo-icon: url('/images/logo/logo-light-thumbnail.png');
}

/* for light theme style */
:root .lpx-theme-light, :root .lpx-brand-logo {
    --lpx-logo: url('/images/logo/logo-dark.png');
    --lpx-logo-icon: url('/images/logo/logo-dark-thumbnail.png');
}

That is correct, I've created a new Module using ABP Suite and want to setup Settings specifically within that module.

I've already added that dependency to the Module's Domain Module:

Thanks for the confirmation. I'll try to reproduce it and write you back asap.

Hi @maksym, I'll try to reproduce the problem and write you back asap.

Hi, I guess you've created a new module and want to use the ISettingManager on it, right?

If so, please ensure you added the related depends on statement to your module class (ensure your domain module depends on the AbpSettingManagementDomainModule ([DependsOn(typeof(AbpSettingManagementDomainModule))])).

I scraped the information together from issues from others. It works, but I don't understand everything yet (e.g. generating the SigningKey & EncryptionKey)

Hi, can you see this comment and apply it in your module class.

Showing 1001 to 1010 of 1343 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 12, 2025, 10:20