Activities of "liangshiwei"

HI,

This is the full method code

protected virtual async Task CheckSizeAsync(long contentLength)
{
    if (contentLength > FileDescriptorConsts.MaxSizeLength)
    {
        throw new UserFriendlyException(L["FileTooBig", BeautifySize(FileDescriptorConsts.MaxSizeLength)]); ;
    }

    var maxSizeDescription = await FeatureChecker.GetOrNullAsync(FileManagementFeatures.StorageSize);

    if (maxSizeDescription == null || maxSizeDescription == "0")
    {
        return;
    }

    var maxSize = long.Parse(maxSizeDescription);

    var totalStorage = await FileDescriptorRepository.GetTotalSizeAsync();

    if ((totalStorage + contentLength) < maxSize)
    {
        return;
    }

    var remainedSize = (maxSize - totalStorage);
    throw new NotEnoughStorageSizeException(BeautifySize(maxSize), BeautifySize(remainedSize));
}

https://abp.io/docs/latest/release-info/migration-guides/abp-8-3#angular-ui

Yes, you are right, we will update the document, you ticket was refunded

You can read these documents to understand it

https://abp.io/docs/latest/framework/fundamentals/connection-strings https://abp.io/docs/latest/framework/architecture/multi-tenancy

Hi,

no, ABP doesn't support it

Hi

ABP will set the sessionid to claims, cache and database.

There are a lot of log messages; can you see them in log files?

Attempt to modify the alignment of the New Record button which should launch the Create Modal form.

how do you modify it?

Hi,

We fixed the problem, and it will included in the next patch version.

https://github.com/abpframework/abp/commit/544e24d85fc2d0f5da987f1a2607323ec4fb7a84

you can try disabled for now

Configure<AbpMvcLibsOptions>(options =>{

    options.CheckLibs = false;

});

Hi,

After check , no meaning to implement it, because you have to refresh current page to use the refresh token to get new access token.

Hi,

it looks very strange.

I still suspect something to do with Redis.

Do you use different redis servers for different environments?

Showing 301 to 310 of 5958 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 11, 2024, 11:11