Activities of "berkansasmaz"

The topic doesn't seem to be about ABP(should be no different from a regular ASP.NET application) but I found a resource for you => https://learn.microsoft.com/en-us/answers/questions/835816/how-to-user-re-authenticate-the-azure-ad-user-when.html

To expire the session and force to re-authenticate with the existing user session, you could directly logout AAD and then clear the cache.

Actually, the lifetime of the token is very long, but we switched our websites from IdentityServer to OpenIddict. During this transition, old tokens were invalidated.

Once you log in, the problem should be fixed.

Related document: https://docs.abp.io/en/abp/latest/CLI#login

Related with https://support.abp.io/QA/Questions/3480

The problem seems to have been resolved in version 6.0.0. However, if you do not want to switch to version 6.0.0, we will soon have a patch version for 5.x.x and it will be solved there too.

Hello,

If you want to download the template for version 4.4.3, please try the command below:

abp new CryptoTrader -t app-pro --tiered --version 4.4.3

If you want to download the more recent version, change your CLI version to the version of the template you want to download. For instance:

dotnet tool update -g Volo.Abp.Cli --version 6.0.0

Hi, can we confirm that abp cli and abp suite have the same version(e.g. 5.3.0)?

Hi, can you please send the output of the following command?

abp login-info

Sorry, my fault. I expected this to work, but it didn't. I tested the code below. Can you try?

    abp.libs.sweetAlert.config.error.footer = "<button type='button' id='DownloadLog' class='swal2-cancel swal2-styled'>Download Log</button>"
    abp.libs.sweetAlert.config.error.didOpen = () => {
        $("#DownloadLog").click(function() {
            console.log("Test");
        });
    }

The blog was inaccurate? You cannot do it the way they said?

I have no idea about this, I did not read the article. I tried to explain the simplest solution completely according to your requirement.

Either way I tried doing it your way. We don't have the angular UI on my project, so I added it into migrations.

Screenshots may belong to the angular interface, but there are similar pages in other user interfaces.

Does it use the key the name, "Abp.Account.EMailConfirmationLink"? I inserted a value for "Abp.Account.EMailConfirmationLink" with content for the email, but it did not use it when I send the confirmation email.

Did you try it from the user interface or did you try to change it by writing code?

Also, where are the original templates coming from? Is it a resource or something? Since database, after initial migration, does not have the list of templates shown above. The "AbpTextTemplateContents" table is empty on initial migration.

Yes, it is a resource. Resource path: Volo/Abp/Account/Emailing/Templates/EmailConfirmationLink.tpl


If you do not want to make this change through the user interface, I recommend you to read the following document if you want to do it with code. => https://docs.abp.io/en/abp/latest/Emailing#overriding-replacing-the-standard-templates

How to trigger Copy Log button click for this solution, can you give an example? Because, it can not be triggered.

I think you can do this in your globally used script file by using the id you gave to the button.

Note: If you don't have a global js file, you can do it similarly to the global.css' config.

$( "#DownloadLog" ).click(function() {
  alert( "Handler for .click() called." );
});
Showing 381 to 390 of 608 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
Do you need assistance from an ABP expert?
Schedule a Meeting
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v9.2.0-preview. Updated on March 25, 2025, 11:10