Base solution for your next web application

Activities of "zyrel.sermon"

The project thows and "Invalid password reset code" when creating a user and checks the "should change password on next login" box, then trying to logged in the newly created user,

tried setting the password when creating a user, and used it upon login -> failed no reset codes recieved when creating a user.

Here's a screenshot of the error. Please advice thanks.

Hi, i'm having an issue regarding export file to excel, using the EpPlusExcelExporterBase sometimes it works, sometimes it shows

{"result":"Requested file does not exist!","targetUrl":null,"success":true,"error":null,"unAuthorizedRequest":false,"__abp":true}

i've already update the file cache expiration to 3 minutes instead of 1 minute based on this ticket https://support.aspnetzero.com/QA/Questions/7868 still exporting is not consistent, am i missing something? Please advise, Thanks

Hi

Do you use Redis or any other cache prodider or do you use memory cache ? ** we use memory cache Does your app have more than one instance running on production ? ** yes our app is running in multiple instance

Hi is there any sample code snippet or docs on how we can implement redis cache in exporting file? Thanks

Question

Hi

in the code below, is it possible to set the DatabaseId programatically based on the current connection string of the database?

Configuration.Caching.UseRedis(options => { options.ConnectionString = _appConfiguration["RedisCache:ConnectionString"]; options.DatabaseId = _appConfiguration.GetValue<int>("RedisCache:DatabaseId"); });

Please Advise, Thanks

Hi

We're using the IDistributedCache to set and get data cache from redis and we're able to see logs set/get from redis, there are times that the exporting is successful and there are times that the "Requested file does not exist!" occurs is it possible that the keys we're getting are already expired?

here's a sample code

protected FileDto CreateExcelPackage(string fileName, Action<ExcelPackage> creator)
        {
            var file = new FileDto(fileName, MimeTypeNames.ApplicationVndOpenxmlformatsOfficedocumentSpreadsheetmlSheet);
            string cacheString;
            var cacheToken = _distributedCache.Get(fileName);
            if (cacheToken != null)
            {
                cacheString = Encoding.UTF8.GetString(cacheToken);
                file = JsonConvert.DeserializeObject<FileDto>(cacheString);
            }
            else
            {
                using (var excelPackage = new ExcelPackage())
                {
                    creator(excelPackage);
                    Save(excelPackage, file);
                }
                cacheString = JsonConvert.SerializeObject(file);
                cacheToken = Encoding.UTF8.GetBytes(cacheString);
                var options = new DistributedCacheEntryOptions()
                    .SetSlidingExpiration(TimeSpan.FromMinutes(1))
                    .SetAbsoluteExpiration(DateTime.Now.AddMinutes(30));
                _distributedCache.Set(fileName, cacheToken, options);
                file = this.CreateExcelPackage(fileName, creator);
            }
            return file;
        }

are we doing it wrong? please advise thanks

Hi,

We've implemented redis caching in our app, everythings works ,everything is cached in redis, but the things is there's a noticeable drop in performance (loading,saving..etc.) in our app. Are we missing something? Is there a config or adjustments needed to bring back the speed of our app?

Please advise, Thanks

Hi

We're using the 5.2.0 version of abp, we'll try to upgrade to the latest version thanks.

Hi Im having issues after upgrading to 9.1 during npm start

its says "Add WidgetComponentBaseComponent to the NgModule to fix it." After adding it on the app.module.ts in the declarations it says

Am i missing something? Please Advise, thanks

Hi Im having issues during npm start

already added

import { ModalModule  } from 'ngx-bootstrap/modal';

and

ModalModule.forRoot()

in the app.module.ts

still got the same error, Am i missing something? Please Advise, thanks.

Showing 1 to 10 of 38 entries