Activities of "liangshiwei"

can you share the error logs

Hi,

sorry, maybe I misunderstood. so you want to keep the abp login page.

when a client clicks on our application logo (which is already configured within their application),

where is the logo? can you share the screenshot?

Request origin null does not have permission to access the resource.

see: https://abp.io/support/questions/7447/Authentication-valid-issuer-issue

Answer

Hi,

We've made several proof of concept projects which tick the boxes for the features we are looking for, but our project requires much greater ability to customize the theme and layout then I think we can achieve with adp

I'm sorry about that. Could you explain your specific use case? Maybe ABP can do it.

Let us know what we need to do to move forward with the refund process.

you can send an email to marketing@volosoft.com.

You can use Local storage events

for example:

this.window.addEventListener('storage', event => {
  if (event.key === 'access_token' && event.newValue === null) {
    this.window.location.reload();
  }
});
Answer

Hi,

okay, we will consider this

Hi,

after my check, replacing modules requires changes to database tables. It may be troublesome to migrate data.

you can try this

public class MySettingDefinitionProvider : SettingDefinitionProvider
{
    public override void Define(ISettingDefinitionContext context)
    {
        var enableLocalLoginSetting = context.GetOrNull("Abp.Account.EnableLocalLogin");

        if (enableLocalLoginSetting != null)
        {
            enableLocalLoginSetting.DefaultValue = "false";
        }
    }
}

Hi

Using AsyncHelper.RunAsync is possibly not a good idea as I think it could lead to deadlocks; however I cannot prove that this is happening.

AsyncHelper is designed for this situations, so it won't be a problem.

The last comment in the thread https://abp.io/support/questions/6409/Mobile-MAUI-Android-Release-build-stuck-on-splash said "we'll update the template according to this information, thanks for this key point" and yet 8 months later GetClaimsPrincipal still isn't async.

Unfortunately, this is the framework's design, and it's not easy to change it.

I will test it locally

i refunded your ticket

HI,

Yes, this is a problem. see https://github.com/abpframework/abp/issues/20680

you can downgrade the ng.schematics package to 7.4.x as a temporary solution

Showing 161 to 170 of 5643 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 08:30