Activities of "Anjali_Musmade"

Hello iteabr2020,

I have checked as I can see in network there is no preflight request more than 12ms. Can you please explore more in detail?

regards,

Hello fernando.guilherme You can try logout and log in via CLI.

or create a new pro project and copy the AbpLicenseCode to your project.

Hello Can you please refer this links https://support.abp.io/QA/Questions/3739 https://support.abp.io/QA/Questions/1205

Answer

Hello portx-dev,

In one of our similar deployed application we are using Min Thread = 1000 and its working fine.

Regards,

Answer

Hello niall,

For invoking Handle method I followed below steps Please try with this code

We have added this code previously

$('#ToDo1sTable').on('click', '.my-custom-button', function () {
        var rowData = dataTable.row($(this).closest('tr')).data();
        var toDo1Id = rowData.id;  
         console.log('Custom button clicked for ToDo1 with ID:', toDo1Id);

now Below that add this code

                  $.ajax({
                    type: "POST",  // Or "GET" depending on your scenario
                    url: "/ToDo1s?handler=Handle",  // Add URL of your handler method
                    success: function (data) {
                            console.log(data);
                                            },
                    error: function (error) {
                        console.error(error);
                        }
                });
           });

It will invoke your Handle method.

Please do let me know if it helps you

Thank you, Anjali

Hello Sraman,

To change the existing email templates for forgot password you need to log in as Admin and then go to Text Template and Edit contents of Password Reset Email.

Please do let me know if found helpful

Thank you, Anjali

Hi,

Please check here https://support.abp.io/QA/Questions/245/ABP-LIC-0008---License-check-failed-for-'XXXXX'

please do let me know if this helps you,

Thank you, Anjali

Hello Abdulaziz_Alsaffar Can you please try to make requireHttps to false in evniroment

And please check all your URLs.

Also check whether you have added them at correct places.

Do have look to this similar issue https://support.abp.io/QA/Questions/4408/Error-An-internal-error-occurred-during-your-request-400-While-Login-using-angular

Please do let me know if anything else needed

Hi

if you can integrate web3 login in asp.net core you can do the same process in abp.io

in abp io once you get necessary details(claims) from the web3 as an external authentication you can modify SignInManager to register or login with the user https://docs.abp.io/en/abp/2.9/How-To/Customize-SignIn-Manager

https://github.com/dotnet/aspnetcore/blob/c56aa320c32ee5429d60647782c91d53ac765865/src/Identity/Core/src/SignInManager.cs#L638-L674

https://learn.microsoft.com/en-us/aspnet/web-api/overview/security/external-authentication-services

How to create module : https://docs.abp.io/en/commercial/latest/abp-suite/create-module-solution#adding-your-new-abp-module-to-your-main-solution

Also please checkout this link if it is useful : https://github.com/abpframework/abp/issues/5343

Answer

Hello niall,

I am working on the same get back to you asap

Thanks

Showing 751 to 760 of 1087 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 08:30