Base solution for your next web application

Activities of "musa.demir"

Where do you want to store decrypted string?

When I add language in "app/admin/languages" then why new language xml file not generate?

I'll make an estimate. It can cause problems when hosting project in multiple servers. For example you have 5 instances up in 5 server. When one instance get request, it will create its own xml. But it is not able to know how many instances are up, where are they located etc. This is very difficult to manage. Instead of that, create xml file then create new language.

By the way xml files are static they are not changing in realtime.

And on which page you received this error?

Answer

It has onClose function which you can add your onClose handler function. You can use

var _myModal = new app.ModalManager({
      ...
});
        
_myModal.onClose(function(){
       //do something
});

Can you pls clear cookies and caches then check if it happens again.

You should do

    Configuration.EntityHistory.IsEnabledForAnonymousUsers = true;

in your module.

Entity History Helper check if enabled, like seen below.

        private bool IsEntityHistoryEnabled
        {
            get
            {
                if (!_configuration.IsEnabled)
                {
                    return false;
                }


                if (!_configuration.IsEnabledForAnonymousUsers && (AbpSession?.UserId == null))
                {
                    return false;
                }


                return true;
            }
        }

If you want your backgroundjob to track entityhistory you can enable IsEnabledForAnonymousUsers.

IocManager.Resolve<IEntityHistoryConfiguration>().IsEnabledForAnonymousUsers = true;
Answer

Can you pls create an issue about that in https://github.com/aspnetzero/aspnet-zero-core/issues

Are you sure that the loop occurs once? You have multiple row with multiple parameter. In first of them your ModelTwoId is null, in second its ModelOneId is null. It seem like you you call it 3 times with some parameters or your ResLinks has 3 item.

Can you plase check that.

Are you sure you call the CreateResLink () method only once?

I don't see any reason for it to record 3 times. I've tried your code just in case. It worked good for me.

What is your product version? What is product framework type (.net framework or .net core)? What is ABP Framework version?

Showing 671 to 680 of 690 entries